Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
jleibowitz
Regular Visitor

Transform date to MM-YYYY


Trying to transform a date in the following format '01/01/2017' to year/month. It can be in any of the following formats: 2017-01, 201701, Jan 2017. Some of the values in the date field as null.

Tried the following formula but get an error message that 'Table' is incorrect.
Year-Mon = FORMAT('Table'[Date], "YYYY-MM")

Also tried to concatenate Date.Year and Date.Month but received an error that power bi did not recognize 'concatenate'.

Questions:
1.      How to extract year/month
2.      Will null values cause an error? Does that need to be built into the formula?

2 ACCEPTED SOLUTIONS

Thank you so much for the quick response. My date type is definately date. Can you confirm what I should be listing as 'table'? I am connecting to an excel file and the tab I am using is called 'Sheet1'. I have no other data files, connections, etc. 

 

If I enter the following formula, I recieve the error below. Is my syntax correcr? =FORMAT(Table[date], "YYYY-MM")

 

Expression.Error: The name 'FORMAT' wasn't recognized.  Make sure it's spelled correctly.

 

Pictures attached for both ways I have tried this. 

 

Thank you!!

Power BI 2.pngPower BI.png

View solution in original post

Hi @jleibowitz,

For my test, I create a calculated column using DAX formula in Power BI datamodel, while you create a custom column in Query Editor. DAX and Power Query are different computer language. Please clear them. If you want to create a custom column using Query statement, you should use the following formula.

=Number.ToText(Date.Year([Date]))&"-"&Number.ToText(Date.Month([Date]))



1.PNG2.PNG

Best Regards,
Angelia

View solution in original post

4 REPLIES 4
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @jleibowitz,

I try to reproduce your scenario and get expected result.

YYYY-MON = FORMAT(Table3[Date],"YYYY-MM")

Column = CONCATENATE(Table3[Date].[Year],Table3[Date].[Month])

1.PNG2.PNG

concatenate is a DAX function, it's weird to recieve the error message. Please confirm your date column is date type

It still workd fine even there is null value, please share your screenshot for further analysis.

3.png

Best Regards,
Angelia

Thank you so much for the quick response. My date type is definately date. Can you confirm what I should be listing as 'table'? I am connecting to an excel file and the tab I am using is called 'Sheet1'. I have no other data files, connections, etc. 

 

If I enter the following formula, I recieve the error below. Is my syntax correcr? =FORMAT(Table[date], "YYYY-MM")

 

Expression.Error: The name 'FORMAT' wasn't recognized.  Make sure it's spelled correctly.

 

Pictures attached for both ways I have tried this. 

 

Thank you!!

Power BI 2.pngPower BI.png

Hi @jleibowitz,

For my test, I create a calculated column using DAX formula in Power BI datamodel, while you create a custom column in Query Editor. DAX and Power Query are different computer language. Please clear them. If you want to create a custom column using Query statement, you should use the following formula.

=Number.ToText(Date.Year([Date]))&"-"&Number.ToText(Date.Month([Date]))



1.PNG2.PNG

Best Regards,
Angelia

Everything worked! Thank you all for the help!

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.