Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hi,
I've created a Date table using DAX that has columns for Date, Year, Month and Day.
I want to create a new column called "Winter" that will have values as either:
- "Southern Hemisphere" for May - September
- "Nothern Hemisphere" for November - March
- "Not Winter" for April and October
Can someplease please help with the DAX?
Best,
Soph
Solved! Go to Solution.
Hi @Anonymous
Give this a try.
Winter = SWITCH(
TRUE(),
MONTH(Dates[Date]) IN {5,6,7,8,9}, "Southern Hemisphere",
MONTH(Dates[Date]) IN {11,12,1,2,3}, "Northern Hemisphere",
"Not Winter"
)
You would add this as a calculated column to your Dates table.
Hi @Anonymous
Give this a try.
Winter = SWITCH(
TRUE(),
MONTH(Dates[Date]) IN {5,6,7,8,9}, "Southern Hemisphere",
MONTH(Dates[Date]) IN {11,12,1,2,3}, "Northern Hemisphere",
"Not Winter"
)
You would add this as a calculated column to your Dates table.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
72 | |
69 | |
49 | |
40 |
User | Count |
---|---|
61 | |
41 | |
33 | |
30 | |
29 |