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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Neal369
New Member

Difference between measures - Based on Date Values

Hi Friends,

 

I am having below excel data, 

How can we calculate difference between total sales values with regrads to current date and previous date in table.

 

Neal369_0-1680318474322.png

 

I have calculated, Last Date as,

 

LastDate = CALCULATE(LASTDATE(Table1[ReportingDate]), FILTER(ALLSELECTED(Table1), Table1[ReportingDate] < MAX(Table1[ReportingDate])))
 
However, I am facing challange while calculating Total Sales corresponding to last date in order to calculate difference.
1 ACCEPTED SOLUTION
Walter_W2022
Resolver II
Resolver II

 

@Neal369 , the dates are not consecutive date, so you have to add index for the date table which extract from the fact table, so we can get the previous date sum, please see below screen shot, and also attached pbix file. the main measure is as below

_variance_preious_date =
VAR _lastDate = SELECTEDVALUE(dimDate[Index])-1
VAR _sumCurrent = CALCULATE(sum('fact'[Sales]))
VAR _sumLastDate = CALCULATE(sum('fact'[Sales]),dimDate[Index]=_lastDate,REMOVEFILTERS(dimDate))
VAR _value = IF(_lastDate = 0, _sumCurrent, _sumCurrent-_sumLastDate)
RETURN
_value
 

wangbt89_0-1680338016135.png

 

View solution in original post

1 REPLY 1
Walter_W2022
Resolver II
Resolver II

 

@Neal369 , the dates are not consecutive date, so you have to add index for the date table which extract from the fact table, so we can get the previous date sum, please see below screen shot, and also attached pbix file. the main measure is as below

_variance_preious_date =
VAR _lastDate = SELECTEDVALUE(dimDate[Index])-1
VAR _sumCurrent = CALCULATE(sum('fact'[Sales]))
VAR _sumLastDate = CALCULATE(sum('fact'[Sales]),dimDate[Index]=_lastDate,REMOVEFILTERS(dimDate))
VAR _value = IF(_lastDate = 0, _sumCurrent, _sumCurrent-_sumLastDate)
RETURN
_value
 

wangbt89_0-1680338016135.png

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.