Forum Discussion
Anonymous
6 years agoNot applicable
Date conversion
Hello, I'm looking to get a conversion of a whole number date I have to an actual date. Current format is in week year ex. (192020) I would like this to read as May 4th 2020 or (4/4/202...
- 6 years ago
Hi Anonymous
create a calculated column
Column = VAR _week = LEFT([Date],2) VAR _year = RIGHT([Date],4) RETURN DATE(_year, 1, -2) - WEEKDAY(DATE(_year, 1, 3)) + _week*7
Anonymous
6 years agoNot applicable
az38 I figured it out. My original number was still sitting in text format. Needed to be changed over to whole number. Thank you very much for your help!
Syndicate_Admin
5 years agoAdministrator
it must work with the text data type as well