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!View all the Fabric Data Days sessions on demand. View schedule
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.)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 6 | |
| 5 | |
| 3 |