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
Midguel
Helper I
Helper I

Get difference in Matrix between two dates of a slicer (show zeros)

Hi everyone, I'm having problems creating a measure that can calculate the difference between 2 dates in a slicer, i created this one but doesn't seems to work like i would want:

DELTA2 = 
VAR LASTDAY = [HOY]
VAR PREVDAY = [ayer]
VAR TOODAY = CALCULATE(SUM('DATA BASE'[Tons]),'DATA BASE'[FECHA DE CAPTURA] = LASTDAY,VALUES('DATA BASE'[OP]))
VAR YESTERDAY = CALCULATE(SUM('DATA BASE'[Tons]),'DATA BASE'[FECHA DE CAPTURA] = PREVDAY,VALUES('DATA BASE'[OP]))
RETURN
TOODAY-YESTERDAY

where:

[HOY] = CALCULATE(MAX('DATA BASE'[FECHA DE CAPTURA]),ALL('DATA BASE'))

and,

[ayer] = CALCULATE(MAX('DATA BASE'[FECHA DE CAPTURA]) - 1,ALL('DATA BASE'))
 

my result is this:

pppp.PNGdel.PNG
it only kinda works with the last 2 dates, also i filtered the results of DELTA2 = 0, so it only displays the changes between days.
I would like to reach a matrix like this (whatever date i choose, will be always one day and the next):

aaaaaa.PNG
if anyone can help me, i would really apreciatted.

1 REPLY 1
Midguel
Helper I
Helper I

How can i point to a slicer where i can select the days? instead of have to use 2 measures (today & yesterday) inside this measure

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