This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi!
I need to calculate the total Volume, ignoring repeated Volume values in the same Id.
Maybe something like create a conditional, where if the Volume in that row is equal to the Volume in the previous Rank_update, it's equals 0, and if it's differente, show the value.
Any help will be highly appreciated!
| id | last_update | rank_update | volume |
101 | 26/05/2021 13:51:25 | 4 | 6700 |
| 101 | 21/05/2021 17:30:29 | 3 | 6700 |
| 101 | 20/05/2021 21:31:28 | 2 | 6700 |
| 101 | 03/09/2020 17:15:39 | 1 | 8630 |
Solved! Go to Solution.
Hi @Anonymous ,
I did a test and tried the following measure:
Measure 2 =
var _table=SUMMARIZE(ALL('Table'),[id],[volume])
return
SUMX(_table,[volume])
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I did a test and tried the following measure:
Measure 2 =
var _table=SUMMARIZE(ALL('Table'),[id],[volume])
return
SUMX(_table,[volume])
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 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 |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 62 | |
| 51 | |
| 31 | |
| 23 | |
| 23 |