Forum Discussion
Date Format
- 9 years ago
This code should work below.
=[#"Day"] & "/" & [#"Month"] & "/" & [#"Year"]
Then once you have that column created, convert the data type to Date
Hi ask
It will update as new data comes in because it is based on your original column. So no data or dates will be lost.
I create a year column by using Add Column - Custum Column
Year = right([Date],4)
Expression.Error: The name 'right' wasn't recognized. Make sure it's spelled correctly.
Any direction?
- GilbertQ9 years agoSuper User
This code should work below.
=[#"Day"] & "/" & [#"Month"] & "/" & [#"Year"]
Then once you have that column created, convert the data type to Date
- ask9 years agoHelper III
i use the split column function to get the Year, month and day.
i try to create a new date by using
date= datevalue(CONCATENATE((CONCATENATE([Month],[Day])),[Year])) from create Add Custom Column.
It returned error:
Expression.Error: The name 'datevalue' wasn't recognized. Make sure it's spelled correctly.