Forum Discussion
i_stanescu_ro
2 years agoHelper I
Change number into date
Hi guys I have a column with numbers with this format: 19990927 I need to change it to a date format, like this: 09.27.1999 or 27.09.1999 or something like this.. Can I pls ask for yo...
- 2 years ago
try this in calculated column,
New Date (Calculated Column) = VAR _year = LEFT(Test[Date],4) VAR _month = MID(Test[Date],5,2) VAR _day = RIGHT(Test[Date],2) VAR _date = DATE(_year,_month,_day) RETURN _date
Arul
2 years agoSuper User
try this in calculated column,
New Date (Calculated Column) =
VAR _year = LEFT(Test[Date],4)
VAR _month = MID(Test[Date],5,2)
VAR _day = RIGHT(Test[Date],2)
VAR _date = DATE(_year,_month,_day)
RETURN _date- i_stanescu_ro2 years agoHelper I
Thanks so much!