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
luke050
Frequent Visitor

Subtraction between yesterday's maximum and today's maximum.

I need a measure that will return the difference between yesterday's max and todays max

so this is my input:

table name: netusage

Zrzut ekranu 2020-11-20 163240.png

 

output example:

18.11.2020        no data - i dont care

19.11.2020        10300-10166 = 134

20.11.2020        10713-10300 = 413

 

tried something like that:

 

todays_maximum = 
CALCULATE(
MAX(netusage[Traffic]),
netusage[Date] = TODAY()
)

ysterdayss_maximum = 
CALCULATE(
MAX(netusage[Traffic]),
netusage[Date] = TODAY()-1
)

 

 

 

 

1 ACCEPTED SOLUTION

@luke050 

sorry, I didn't consider the time part. That will affect the result. I create a new date column and slightly change the DAX.

please see the attachment





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@luke050 

you can try to create a measure

    Measure = 
    VAR yesterday=maxx(FILTER(all(netusage),'netusage'[Date]=SELECTEDVALUE('netusage'[Date])-1),netusage[Traffic])
    return if(ISBLANK(yesterday),BLANK(),max(netusage[Traffic])-yesterday)

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks for the quick reply, I just tried it but the measure doesn't return any value, maybe I'm doing something wrong.

Zrzut ekranu 2020-11-20 171210.pngZrzut ekranu 2020-11-20 171334.png

@luke050 

sorry, I didn't consider the time part. That will affect the result. I create a new date column and slightly change the DAX.

please see the attachment





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.