Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I am creating a DataFlow in Power Apps.
My Query is pulling from two SPO lists
I have been able to add a column based on the date in another. This new column is called MonthNumber.
I am trying to convert the month number into MONTH.
I have tried the following:
Solved! Go to Solution.
It looks like you are trying to use DAX functions in Power Query, which uses the M language.
Generally, it's easier to get the month string from a date field but you can make the number into a date first:
Date.ToText(#date(2000, [MonthNumber], 1), "MMM")
(The choices of year and day in the #date are arbitrarily chosen.)
Thank you that is it!
How do I mark your post as the solution?
There should be an Accept as Solution button next to the Kudos (thumbs up) and Reply button.
If you don't see these options, I can also accept the solution on your behalf.
It looks like you are trying to use DAX functions in Power Query, which uses the M language.
Generally, it's easier to get the month string from a date field but you can make the number into a date first:
Date.ToText(#date(2000, [MonthNumber], 1), "MMM")
(The choices of year and day in the #date are arbitrarily chosen.)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |