The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello guys, I have a the last two digits of the year and is in text format how can I make it 2020,2019 and in date format?
Solved! Go to Solution.
@Kalachuchi , Aumming you have year values like 19
a new column in date format
Date([Year]1,1)
or
date(2000+[Year],1,1)
in yyyy format
year(Date([Year]1,1))
or
year(date(2000+[Year],1,1))
@Kalachuchi , Aumming you have year values like 19
a new column in date format
Date([Year]1,1)
or
date(2000+[Year],1,1)
in yyyy format
year(Date([Year]1,1))
or
year(date(2000+[Year],1,1))