Forum Discussion
Anonymous
6 years agoNot applicable
Date format from text
I have a column that's coming in as text that supposed to be a date. I want to convert that text to date but when I use Format(Date,"##/##/##") and then go to change it type it says format() is not a...
- 6 years ago
Anonymous
yes.
try
Column = IF(ISBLANK([DATE]), BLANK(), DATE(VALUE(RIGHT([DATE], 2)) + 2000, VALUE(LEFT([DATE], LEN([DATE])-4)), VALUE(MID([DATE],LEN([DATE])-3,2))) )
az38
6 years agoCommunity Champion
Anonymous
create a calculated column
Column = DATE(VALUE(RIGHT([DATE], 2)) + 2000, VALUE(LEFT([DATE], LEN([DATE])-4)), VALUE(MID([DATE],LEN([DATE])-3,2)))- Anonymous6 years agoNot applicable
az38 Thanks for the information but I get "An argument of function 'LEFT' has the wrong data type or has an invalid value/" error.