Excel date conversion to accounting date [on hold]
Having issues convert a date in excel, to look like the following
1/1/2016. Have tried changing to a date option.
Below is what i have to work with and the option to choose either of the 2.
Jan 19, 2016
or
012016
date
put on hold as unclear what you're asking by Scott, fixer1234, PeterH, Pimp Juice IT, BillP3rd 2 days ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
Having issues convert a date in excel, to look like the following
1/1/2016. Have tried changing to a date option.
Below is what i have to work with and the option to choose either of the 2.
Jan 19, 2016
or
012016
date
put on hold as unclear what you're asking by Scott, fixer1234, PeterH, Pimp Juice IT, BillP3rd 2 days ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
If you remove the time, Excel will automatically treat the string "Jan 19, 2016" as the date 1/19/2016. If you insert colons before and after the minutes, if will treat "Jan 19, 2016 01:20:16" as the date/time 1/19/2016 1:20:16 AM.
– Blackwood
Jan 11 at 0:39
Is that stored as text or an Excel date/time?
– fixer1234
Jan 13 at 0:35
I reworded my question. both arre stored as text and unable to format either to the date I need.
– Mida
Jan 13 at 7:46
add a comment |
Having issues convert a date in excel, to look like the following
1/1/2016. Have tried changing to a date option.
Below is what i have to work with and the option to choose either of the 2.
Jan 19, 2016
or
012016
date
Having issues convert a date in excel, to look like the following
1/1/2016. Have tried changing to a date option.
Below is what i have to work with and the option to choose either of the 2.
Jan 19, 2016
or
012016
date
date
edited Jan 13 at 7:44
Mida
asked Jan 11 at 0:31
MidaMida
11
11
put on hold as unclear what you're asking by Scott, fixer1234, PeterH, Pimp Juice IT, BillP3rd 2 days ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as unclear what you're asking by Scott, fixer1234, PeterH, Pimp Juice IT, BillP3rd 2 days ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
If you remove the time, Excel will automatically treat the string "Jan 19, 2016" as the date 1/19/2016. If you insert colons before and after the minutes, if will treat "Jan 19, 2016 01:20:16" as the date/time 1/19/2016 1:20:16 AM.
– Blackwood
Jan 11 at 0:39
Is that stored as text or an Excel date/time?
– fixer1234
Jan 13 at 0:35
I reworded my question. both arre stored as text and unable to format either to the date I need.
– Mida
Jan 13 at 7:46
add a comment |
If you remove the time, Excel will automatically treat the string "Jan 19, 2016" as the date 1/19/2016. If you insert colons before and after the minutes, if will treat "Jan 19, 2016 01:20:16" as the date/time 1/19/2016 1:20:16 AM.
– Blackwood
Jan 11 at 0:39
Is that stored as text or an Excel date/time?
– fixer1234
Jan 13 at 0:35
I reworded my question. both arre stored as text and unable to format either to the date I need.
– Mida
Jan 13 at 7:46
If you remove the time, Excel will automatically treat the string "Jan 19, 2016" as the date 1/19/2016. If you insert colons before and after the minutes, if will treat "Jan 19, 2016 01:20:16" as the date/time 1/19/2016 1:20:16 AM.
– Blackwood
Jan 11 at 0:39
If you remove the time, Excel will automatically treat the string "Jan 19, 2016" as the date 1/19/2016. If you insert colons before and after the minutes, if will treat "Jan 19, 2016 01:20:16" as the date/time 1/19/2016 1:20:16 AM.
– Blackwood
Jan 11 at 0:39
Is that stored as text or an Excel date/time?
– fixer1234
Jan 13 at 0:35
Is that stored as text or an Excel date/time?
– fixer1234
Jan 13 at 0:35
I reworded my question. both arre stored as text and unable to format either to the date I need.
– Mida
Jan 13 at 7:46
I reworded my question. both arre stored as text and unable to format either to the date I need.
– Mida
Jan 13 at 7:46
add a comment |
1 Answer
1
active
oldest
votes
- "Isolate" the "Jan 19, 2016" part from "Jan 19, 2016 012016" by using left() + len() .
- then convert to date value using datevalue() .
- use formatting to get the formatting you need.
Assuming the "Jan 19, 2016 012016" is located at A1. This formula is for the step 1 & 2 : =DATEVALUE(LEFT(A1,LEN(A1)-6))
Step 3 is just a right-click (plus some other clicks) away.. ( :
Hope it helps.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
- "Isolate" the "Jan 19, 2016" part from "Jan 19, 2016 012016" by using left() + len() .
- then convert to date value using datevalue() .
- use formatting to get the formatting you need.
Assuming the "Jan 19, 2016 012016" is located at A1. This formula is for the step 1 & 2 : =DATEVALUE(LEFT(A1,LEN(A1)-6))
Step 3 is just a right-click (plus some other clicks) away.. ( :
Hope it helps.
add a comment |
- "Isolate" the "Jan 19, 2016" part from "Jan 19, 2016 012016" by using left() + len() .
- then convert to date value using datevalue() .
- use formatting to get the formatting you need.
Assuming the "Jan 19, 2016 012016" is located at A1. This formula is for the step 1 & 2 : =DATEVALUE(LEFT(A1,LEN(A1)-6))
Step 3 is just a right-click (plus some other clicks) away.. ( :
Hope it helps.
add a comment |
- "Isolate" the "Jan 19, 2016" part from "Jan 19, 2016 012016" by using left() + len() .
- then convert to date value using datevalue() .
- use formatting to get the formatting you need.
Assuming the "Jan 19, 2016 012016" is located at A1. This formula is for the step 1 & 2 : =DATEVALUE(LEFT(A1,LEN(A1)-6))
Step 3 is just a right-click (plus some other clicks) away.. ( :
Hope it helps.
- "Isolate" the "Jan 19, 2016" part from "Jan 19, 2016 012016" by using left() + len() .
- then convert to date value using datevalue() .
- use formatting to get the formatting you need.
Assuming the "Jan 19, 2016 012016" is located at A1. This formula is for the step 1 & 2 : =DATEVALUE(LEFT(A1,LEN(A1)-6))
Step 3 is just a right-click (plus some other clicks) away.. ( :
Hope it helps.
answered Jan 11 at 1:53
p._phidot_p._phidot_
633312
633312
add a comment |
add a comment |
If you remove the time, Excel will automatically treat the string "Jan 19, 2016" as the date 1/19/2016. If you insert colons before and after the minutes, if will treat "Jan 19, 2016 01:20:16" as the date/time 1/19/2016 1:20:16 AM.
– Blackwood
Jan 11 at 0:39
Is that stored as text or an Excel date/time?
– fixer1234
Jan 13 at 0:35
I reworded my question. both arre stored as text and unable to format either to the date I need.
– Mida
Jan 13 at 7:46