Forum Discussion
UserExcel
Apr 07, 2021Copper Contributor
Excel Date
I have date column as 1.1.2021. and i would like to convert it as 20210101. can anyone help me ,,, Thanks in advance.
- Apr 07, 2021Thank you for your solution but I found out an easy way to change to the format i need... Format on custom ... and type the format you need,, in the space provided as Type: yyyymmdd. Problem solved !!!
HansVogelaar
Apr 07, 2021MVP
Does the column contain 'real' dates, or are they text values that look like dates?
UserExcel
Apr 07, 2021Copper Contributor
they look like date and are in 1.1.2021 form , but i converted to 1.1.2021 and are date column now....
- HansVogelaarApr 07, 2021MVP
Let's say the dates are in A2 and down.
Enter the following formula in B2 and fill down:
=TEXT(DATE(RIGHT(A2,4),MID(A2,FIND(".",A2)+1,FIND(".",A2,FIND(".",A2)+1)-FIND(".",A2)-1),LEFT(A2,FIND(".",A2)-1)),"yyyymmdd")
- UserExcelApr 07, 2021Copper ContributorThank you for your solution but I found out an easy way to change to the format i need... Format on custom ... and type the format you need,, in the space provided as Type: yyyymmdd. Problem solved !!!
- HansVogelaarApr 07, 2021MVP
That means that the values were already real dates, and not text values that look like dates. Your reply to my earlier question made me think it was the latter.