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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
sandee
Helper I
Helper I

Dynamic DATEFunction

Hi Everyone,

 

i am trying to calculate "Winter sale" and want to build the dynamic "Date" so that power bi calpture that period and give results according to that. 

Below is my DAX, but it is not working, seems that "Date" Measure inside is not accepting same:

 

Winter Sales = VAR LADATE = MAX('Date'[Date])
VAR CYR = YEAR(LADATE)

RETURN
CALCULATE([Sales Amount],KEEPFILTERS(FILTER(ALL('Date'[Date]),
'Date'[Date] >= DATE(CYR,12,01) &&
'Date'[Date] <= DATE(CYR,02,28)
)))
 
DateFunction.PNG
 
i want to show all four seasons sale, only the Winter is remaining. 
2 ACCEPTED SOLUTIONS
selimovd
Most Valuable Professional
Most Valuable Professional

Hey @sandee ,

 

if I understand it right the winter sales should just cover the sales in December, January and February, correct?

In this case I would just filter to these months. Check if the following measure would work:

Winter Sales =
CALCULATE(
    [Sales Amount],
    MONTH( 'Date'[Date] )
        IN {
        12,
        1,
        2
    }
)

 

Also be aware that your approach wouldn't cover February 29th in a leap year.

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

 

View solution in original post

Hi Selimovd,

 

this is incredible, you made this DAX very easy , i was working on filter condition on ">= && "<=". and was trying to work on "Date" dax  so that i can enter the proper format. but it was not accepting same. 

View solution in original post

4 REPLIES 4
selimovd
Most Valuable Professional
Most Valuable Professional

Hey @sandee ,

 

if I understand it right the winter sales should just cover the sales in December, January and February, correct?

In this case I would just filter to these months. Check if the following measure would work:

Winter Sales =
CALCULATE(
    [Sales Amount],
    MONTH( 'Date'[Date] )
        IN {
        12,
        1,
        2
    }
)

 

Also be aware that your approach wouldn't cover February 29th in a leap year.

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

 

My Solution :

sandee_0-1623769402511.png

thnaks Selimovd....

selimovd
Most Valuable Professional
Most Valuable Professional

Hey @sandee ,

 

I'm happy it worked 🙂

That's also normal, many times I was thinking way too complicated. But when you write more DAX thing will get easier. Keep going 🙂

 

Have fun and best regards

Denis

 

Hi Selimovd,

 

this is incredible, you made this DAX very easy , i was working on filter condition on ">= && "<=". and was trying to work on "Date" dax  so that i can enter the proper format. but it was not accepting same. 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.