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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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 🙂
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 60 | |
| 45 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 101 | |
| 41 | |
| 29 | |
| 29 |