Reply
aurix
New Member

Data: show as month/year format

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?

1 ACCEPTED SOLUTION
avatar user
Anonymous
Not applicable

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

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

avatar user
Anonymous
Not applicable

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

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)