Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have a data slicer in my report and I want to create a measure that will subtract the value at end of the date filter from the value at the start data selected
for example if i set my date slicer to between 4-20 - 4-24 I want the value to show 40 (120-80)
Date Value
4-20 120
4-21 110
4-22 100
4-23 90
4-24 80
Thank you!
Solved! Go to Solution.
hI @Anonymous ,
Try this measure:
hI @Anonymous ,
Try this measure:
Hi @Anonymous
try a measure
Measure =
var _minDate = MIN('Table'[Date])
var _maxDate = MAX('Table'[Date])
return
MAXX(FILTER('Table','Table'[Date]=_maxDate),'Table'[Amount]) -
MAXX(FILTER('Table','Table'[Date]=_minDate),'Table'[Amount])
@Anonymous , prefer to use a date calendar for dates
Try like
Measure =
var _min = minx('Date','Date'[Date])
var _max = maxx('Date','Date'[Date])
return
calculate(Table[Value],filter('Date','Date'[Date]=_min))- calculate(Table[Value],filter('Date','Date'[Date]=_max))
Or
Measure =
var _min = minx('Date','Date'[Date])
var _max = maxx('Date','Date'[Date])
return
calculate(Table[Value],filter(all('Date'),'Date'[Date]=_min))- calculate(Table[Value],filter(all('Date'),'Date'[Date]=_max))
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 51 | |
| 42 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 139 | |
| 116 | |
| 53 | |
| 37 | |
| 31 |