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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello,
I would like to subtract the values of the day with the previous day value. Tabel like as fallow;
Date Value
01.01.2022 1259
02.01.2022 1301
03.01.2022 1238
etc.. etc...
Solved! Go to Solution.
Hi,
You can use this logic to retrieve the previous day value and then substract from there: https://datacornering.com/calculate-last-or-previous-value-within-power-bi/
Hi @akarca ,
Here are the steps you can follow:
1. Create calculated column.
Column =
SUMX(FILTER(ALL('Table'),
'Table'[Date]=EARLIER('Table'[Date])-1),[Value])
-
[Value]
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi,
You can use this logic to retrieve the previous day value and then substract from there: https://datacornering.com/calculate-last-or-previous-value-within-power-bi/
| User | Count |
|---|---|
| 51 | |
| 38 | |
| 33 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 58 | |
| 36 | |
| 35 |