Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |