Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi there
I am new to BI and have the below format of table in Data.
Sales | FY | FM |
500 | 2021 | May |
600 | 2021 | Jun |
skipped 50000 rows
System doesn't read it as date and i am struggled to compare. Could anyone advise please?
Thanks
F
Solved! Go to Solution.
Hi @felix-chong
You can use DAX or M, here is a column in DAX
Date = DATEVALUE('Table'[FY]&"/"&'Table'[FM]&"/"&"1")
And one in M
Date.From( "1."&[FM] &"."&Text.From([FY]))
Hi Vera_33
Thanks for the suggestions.
I tired and the following errors come up.How could i fix it please?
Thanks
F
Hi @felix-chong
You can use DAX or M, here is a column in DAX
Date = DATEVALUE('Table'[FY]&"/"&'Table'[FM]&"/"&"1")
And one in M
Date.From( "1."&[FM] &"."&Text.From([FY]))
Hi Vera_33
Thanks for the suggestions.
I tired and the following errors come up.How could i fix it please?
Thanks
F
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.