Forum Discussion
hallang
2 years agoFrequent Visitor
Changing text to date column not working
Hi, I have added in a formula to convert a column from DD MMMM YYYY to MMMM YYYY. I have added a column to do this but when I try and change the data type to 'Date' its saying it cannot convert it ...
- 2 years ago
The null values are the issue.
So let's try this...Month_Year = DATEVALUE( IF( ISBLANK([End]), BLANK(), FORMAT([End], "MMMM YYYY") ) )
jgeddes
2 years agoSuper User
Alrighty. What happens when you use...
FORMAT('Absence Data'[End], "MMMM YYYY")
without wrapping it in the DATEVALUE()?
hallang
2 years agoFrequent Visitor
that formula works but when I try and change the format of that to date rather than text I get an error. Can I not change this column so it behaves like a date column?