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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
hitesh1607
Advocate II
Advocate II

DAX for two Date Keys in one table

Hi - I do have a Power BI model with ShipDateKey (Active) and OrderDateKey (Inactive) for fct Sales joined with DimCalendar. I am looking for a DAX calculation that gives me SUM of GrossPrice where ShipDateKey is Current Month ( Jan 2021) AND Order Date is (Dec 2020).

 

I also have DimCalendar with Column RelativeMonth (-1,0,1) as 0 Previous Month and 1 as Current Month.

 

The SQL for the calculation should be like this. 

SELECT SUM([Gross Price]) GP
FROM [DW].[dbo].[v_fctSales]
WHERE OrderDateKey LIKE '202012__' AND ShipDateKey LIKE '202101__'

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

@hitesh1607 

Measure =
VAR Y1_ =    YEAR ( TODAY () )
VAR M1_ =    MONTH ( TODAY () )
VAR Y0_ =    YEAR ( EDATE ( TODAY (), -1 ) )
VAR M0_ =    MONTH ( EDATE ( TODAY (), -1 ) )
RETURN
    CALCULATE (
        SUM ( Sales[Gross Price] ),
        YEAR ( Sales[ShipDateKey] ) = Y1_,
        MONTH ( Sales[ShipDateKey] ) = M1_,
        YEAR ( Sales[OrderDate] ) = Y0_,
        MONTH ( Sales[OrderDate] ) = M0_
    )

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

 

View solution in original post

3 REPLIES 3
AlB
Community Champion
Community Champion

@hitesh1607 

Measure =
VAR Y1_ =    YEAR ( TODAY () )
VAR M1_ =    MONTH ( TODAY () )
VAR Y0_ =    YEAR ( EDATE ( TODAY (), -1 ) )
VAR M0_ =    MONTH ( EDATE ( TODAY (), -1 ) )
RETURN
    CALCULATE (
        SUM ( Sales[Gross Price] ),
        YEAR ( Sales[ShipDateKey] ) = Y1_,
        MONTH ( Sales[ShipDateKey] ) = M1_,
        YEAR ( Sales[OrderDate] ) = Y0_,
        MONTH ( Sales[OrderDate] ) = M0_
    )

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

 

AlB
Community Champion
Community Champion

Hi @hitesh1607 

Measure =
CALCULATE (
    SUM ( Sales[Gross Price] ),
    YEAR ( Sales[ShipDateKey] ) = 2021,
    MONTH ( Sales[ShipDateKey] ) = 1,
    YEAR ( Sales[OrderDate] ) = 2020,
    MONTH ( Sales[OrderDate] ) = 12
)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

Hi @AlB - This way my DAX will become static and I need a dynamic solution that can determine the Current Month for the Ship date and the previous month for the Order Date. Is there a way we can write a DAX using relative Calendar month ?? I Do have that in my dimCalendar and it changes dynamically.

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.