Forum Discussion
nasirabd
Dec 13, 2021Copper Contributor
Convert Date/Time String to Date Format
I am seeking assistance with converting a string that is a date/time value into a date format in Excel. I would like to use this field along with associated data in a pivot table to group by day, we...
- Dec 13, 2021
You may convert text to date by formula like
=DATE( RIGHT(A2,4), MONTH( 1&LEFT( RIGHT(A2, LEN(A2) -4), 3) ), LEFT( RIGHT(A2, LEN(A2) -8), 2))and apply to result any date format you wish.
Juliano-Petrukio
Dec 13, 2021Bronze Contributor
Select the date column and apply the format as per picture below:
CTRL+1 (Shortcut to access it)
- nasirabdDec 13, 2021Copper Contributor
Thank you for your response. I did try using the custom date function in Format Cells and it did not make any changes.