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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

[DAX] Measure which returns the difference (%) between daily totals and a baseline value?

DateValue
01/01/2020500
... 
29/02/2020650
01/03/2020700
02/03/2020600
... 
31/08/2020550

 

I am calculating a baseline value as the median of January and February values (bolded in table above):

 

Baseline Value = CALCULATE(MEDIAN('Table'[Value]), 'Table'[Month Number] < 3)
 
I want to determine the % difference between Baseline Value and all future values (i.e. months >= 3). I imagine the pseudo-code to look something like:
 
Difference From Baseline = DIVIDE('Table'[Value] - 'Table'[Baseline Value], 'Table'[Baseline Value])

 

When I attempt to plot Difference From Baseline on a line chart, I get a flat line for all future dates. I am guessing I need to somehow FILTER for each unique date? Any help is much appreciated.

1 ACCEPTED SOLUTION
amitjzaveri
Resolver II
Resolver II

@Anonymous  Please change the baseline formula as follows then it should work

 

Baseline Value = CALCULATE(MEDIAN('Table'[Value]), MONTH('Table'[Date]) < 3)

Difference From Baseline = DIVIDE(SUM('Table'[Value])-[Baseline Value],[Baseline Value])

 

Example output:

 

bi.png

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

 

Cheers!

View solution in original post

2 REPLIES 2
amitjzaveri
Resolver II
Resolver II

@Anonymous  Please change the baseline formula as follows then it should work

 

Baseline Value = CALCULATE(MEDIAN('Table'[Value]), MONTH('Table'[Date]) < 3)

Difference From Baseline = DIVIDE(SUM('Table'[Value])-[Baseline Value],[Baseline Value])

 

Example output:

 

bi.png

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

 

Cheers!

Anonymous
Not applicable

Thanks. The problem was my Baseline calculation as you suggested.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors