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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
SophRow
Resolver II
Resolver II

Season column in date table

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

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hi @SophRow 

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.

 

View solution in original post

1 REPLY 1
jdbuchanan71
Super User
Super User

Hi @SophRow 

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.

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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