This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hey guys,
Could you please help me out to get the difference between rows as a calculated column considering a few parameters?
I would need to calculate the difference between sales, having in mind that I need to do it for each Account group separately. I was trying to do it with EARLIER, PREVIOUSMONTH, PARARALEPERIOD but always stopped somewhere in the process.
This is an example of the columns and desired outcome.
| Account | Date | Sales | Calculated column |
| A | 9/1/2012 | 120 | |
| A | 10/1/2012 | 150 | 30 |
| A | 11/1/2012 | 150 | 0 |
| A | 12/1/2012 | 100 | -50 |
| B | 9/1/2012 | 10 | |
| B | 10/1/2012 | 20 | 10 |
| B | 11/1/2012 | 30 | 10 |
| B | 12/1/2012 | 40 | 10 |
Thank you!
Solved! Go to Solution.
Probably something like below. PBIX attached.
Column =
VAR __Previous =
MAXX(
FILTER(
ALL('Table'),
[Account] = EARLIER([Account]) &&
[Date] < EARLIER([Date])
),
[Date]
)
RETURN
[Sales] -
MAXX(
FILTER(
ALL('Table'),
[Account] = EARLIER([Account]) &&
[Date] = __Previous
),
[Sales]
)
Probably something like below. PBIX attached.
Column =
VAR __Previous =
MAXX(
FILTER(
ALL('Table'),
[Account] = EARLIER([Account]) &&
[Date] < EARLIER([Date])
),
[Date]
)
RETURN
[Sales] -
MAXX(
FILTER(
ALL('Table'),
[Account] = EARLIER([Account]) &&
[Date] = __Previous
),
[Sales]
)
Thank you @Greg_Deckler .
Works perfectly in PowerBI. I also use same Excel data model and when I try to use the same approach in Power Pivot it doesn't work there. There it calculates the difference only for the first row?
Do you have any idea why this could be the case?
Tomislav
No idea. I didn't have that issue. See attached xlsx.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |