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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello!
I'm stuck with the following problem. I got different tool types used in the same run and I need to get the total used time for all 3 runs. Basically I need to dismiss the duplicated values for each run and add them up. Can some one help me with that?
| Run ID | Used time | Tool Type |
| 1 | 1.2 | Tool 1 |
| 1 | 1.2 | Tool 2 |
| 1 | 1.2 | Tool 1 |
| 1 | 1.2 | Tool 3 |
| 2 | 5.2 | Tool 2 |
| 2 | 5.2 | Tool 3 |
| 3 | 2.4 | Tool 1 |
| 3 | 2.4 | Tool 2 |
| 3 | 2.4 | Tool 3 |
| 3 | 2.4 | Tool 4 |
| 3 | 2.4 | Tool 2 |
Solved! Go to Solution.
Not really, but thanks!
The below actually worked
Hi, @motta
try below code
result =
calculate(
sum('yourtable'[used time]),
allexcept('yourtable','yourtable'[run id])
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. and don't forget to give kudos.
Not really, but thanks!
The below actually worked
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 18 | |
| 14 | |
| 14 |