Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi Everyone -
I'm looking for help to use a slicer to dynamically calculate the difference between the two dates selected. This is for my "office market statistics project." Specifically, I'm looking to easily show the difference in absorption once a user chooses two dates.
Absorption is calculated by the difference in occupied square feet over a given period - it can be positive or negative. Occupied SF is calculated by subtracting the vacant SF from the "rentable building area (RBA)."
So for the situation below, the dates are 7/1/2014 - 4/1/2015, and in card visual below, it would display "3,486,142."
Occupied SF in 4/1/2015 = 136,426,764
Occupied SF in 7/1/2014 = 132,940,621
Absorption = 3,486,142
These numbers/stats will be updated each month and will all be in the same table. Any help would be greatly appreciated!
Thanks,
Paul
@Anonymous
@OwenAuger's solution is correct. Just use LASTDATE() calculation minus the FIRSTDATE() calculation.
Regards,
Hi Paul @Anonymous
I'm assuming you have a date table called 'Date' with date column 'Date'[Date], otherwise rename.
Also you've already defined an [Occ SF] measure by the looks of it.
Then a measure something like this should do the trick:
Absorption Between First and Last Date =
CALCULATE ( [Occ SF], FIRSTDATE ( 'Date'[Date] ) )
- CALCULATE ( [Occ SF], LASTDATE ( 'Date'[Date] ) )
Owen 🙂
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 20 | |
| 17 | |
| 12 |
| User | Count |
|---|---|
| 64 | |
| 55 | |
| 42 | |
| 38 | |
| 30 |