March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all. New to Power BI.
I have three columns - day/month/year, month and year, each date type. I want to keep the day/month/year and have a second column showing month and year, but when i create the column and change the data type to date the format goes back to day/month/year. Any ideas how to fix this in Power Query M?
Solved! Go to Solution.
If you are talking about a format of MM/YYYY, that has to be type text. 08/2024 isn't really a date, so date type won't work. You need to use
Table.AddColumn(PriorStepOrTableName, "Month/Year", each Text.From(Date.Month([Date]))&"/"&Text.From(Date.Year([Date])), type text)
--Nate
If you are talking about a format of MM/YYYY, that has to be type text. 08/2024 isn't really a date, so date type won't work. You need to use
Table.AddColumn(PriorStepOrTableName, "Month/Year", each Text.From(Date.Month([Date]))&"/"&Text.From(Date.Year([Date])), type text)
--Nate
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.