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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Guys,
I have a table with month number = 1,2,3,4,5,6 etc... I would like to convert it into month name = Jan, Feb, Mar, Apr, May, etc..
I duplicated the Month number field and used the below script to covert to month name:
Month =
SWITCH (
[Date Granularity.Level 2: Month],
1, "Jan",
2, "Feb",
3, "Mar",
4, "Apr",
5, "May",
6, "Jun",
7, "Jul",
8, "Aug",
9, "Sep",
10, "Oct",
11, "Nov",
12, "Dec",
BLANK ()
)
However I am getting the below message: Can anyone tell me what is going in here?
Solved! Go to Solution.
@Anonymous
Hi, Switch function is DAX and you are in Query Editor with work with Power Query
The most simple way to obtain this is:
Add Column--> Conditional Column and Enter the conditions
Regards
Victor
@Anonymous
Hi, Switch function is DAX and you are in Query Editor with work with Power Query
The most simple way to obtain this is:
Add Column--> Conditional Column and Enter the conditions
Regards
Victor