Forum Discussion
Anonymous
3 years agoNot applicable
Convert YYYYMM to Date
Hi all, I have the following column, withthe year and the week number and I'm looking to convert this to a date where the date is the first date of the given week (ie 202304 would be 23/01/2023)....
- 3 years ago
hi Anonymous
try to add a column like this:
DATE = DATE( LEFT([YYYYMM], 4), 1,1) + (RIGHT([YYYYMM],2)-1)*7 + 1
FreemanZ
Super User
3 years agohi Anonymous
try to add a column like this:
DATE = DATE( LEFT([YYYYMM], 4), 1,1) + (RIGHT([YYYYMM],2)-1)*7 + 1
- Anonymous3 years agoNot applicable
This worked, thank you so much!