March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi - I want to create a variance calculation based on the combination of 2 values within a single date slicer. The calculation is different for each combination since the months will be different.
I know what calculation I can use and how to achieve most of this, but I am stuck on how to restrict the calculation to 2 values in the slicer.
So simply put, I am trying to achieve this: IF PERIODS SELECTED = JAN AND FEB, THEN (JAN - FEB)
I've tried several variations of this formula, but I am stuck on the AND part of the clause.
TD Variance = SWITCH(TRUE(), VALUES('ABCD Customer YTD'[Period])=DATE(2019,1,1) && VALUES('ABCD Customer YTD'[Period])=DATE(2019,2,1), CALCULATE( SUM('ABCD Customer YTD'[(YTD) Sales Amount]), 'ABCD Customer YTD'[Period] IN { DATE(2019, 1, 1) } ) - CALCULATE( SUM('ABCD Customer YTD'[(YTD) Sales Amount]), 'ABCD Customer YTD'[Period] IN { DATE(2019, 2, 1) } ),
//Additional combinations will go here// BLANK())
Solved! Go to Solution.
Hello @Brysonds
If I am understanding correctly this is fairly straight forward with a date table that contains a column with the year and month combined into a single number. This DAX code will give us a simple date table to use. Enter it in modeling > new table.
Dates = VAR DateRange = CALENDARAUTO() RETURN ADDCOLUMNS( DateRange, "Year",YEAR([Date]), "Month",FORMAT([Date],"mmmm"), "Year Month", FORMAT([Date],"yyyy-mmmm"), "YearMonthSort",YEAR([Date])*100 + MONTH([Date]), "ShortName",FORMAT([Date],"ddd"), "IsWeekDay", NOT WEEKDAY( [Date] ) IN {1,7} )
You would join this into your model by linking Dates[Date] > 'ABCD Customer YTD'[Period].
We will want a measure that just sums the amount.
Sales Amount = SUM('ABCD Customer YTD'[(YTD) Sales Amount])
Then this measure will calculate the lowest Year Month and the highest year month and give us the difference.
Difference = VAR FirstMonth = MIN ( 'Dates'[YearMonthSort] ) VAR LastMonth = MAX ( 'Dates'[YearMonthSort] ) VAR FirstMonthAmt = CALCULATE( [Sales Amount], 'Dates'[YearMonthSort] = FirstMonth ) VAR LastMonthAmt = CALCULATE( [Sales Amount], 'Dates'[YearMonthSort] = LastMonth ) RETURN FirstMonthAmt - LastMonthAmt
Hello @Brysonds
If I am understanding correctly this is fairly straight forward with a date table that contains a column with the year and month combined into a single number. This DAX code will give us a simple date table to use. Enter it in modeling > new table.
Dates = VAR DateRange = CALENDARAUTO() RETURN ADDCOLUMNS( DateRange, "Year",YEAR([Date]), "Month",FORMAT([Date],"mmmm"), "Year Month", FORMAT([Date],"yyyy-mmmm"), "YearMonthSort",YEAR([Date])*100 + MONTH([Date]), "ShortName",FORMAT([Date],"ddd"), "IsWeekDay", NOT WEEKDAY( [Date] ) IN {1,7} )
You would join this into your model by linking Dates[Date] > 'ABCD Customer YTD'[Period].
We will want a measure that just sums the amount.
Sales Amount = SUM('ABCD Customer YTD'[(YTD) Sales Amount])
Then this measure will calculate the lowest Year Month and the highest year month and give us the difference.
Difference = VAR FirstMonth = MIN ( 'Dates'[YearMonthSort] ) VAR LastMonth = MAX ( 'Dates'[YearMonthSort] ) VAR FirstMonthAmt = CALCULATE( [Sales Amount], 'Dates'[YearMonthSort] = FirstMonth ) VAR LastMonthAmt = CALCULATE( [Sales Amount], 'Dates'[YearMonthSort] = LastMonth ) RETURN FirstMonthAmt - LastMonthAmt
Exaclty what was needed - thank you so much!
Not sure that I get this, but if MIN(Date) and MAX(Date) or FIRSTDATE(Date) and LASTDATE(Date) when selected by slicer period should work.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
157 | |
97 | |
79 | |
69 |