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
I'm trying to sum only one (or I guess the minimum would work) value for each repeating value in another column.
I have a column that duplicates the minimum hours required and then repeats in the table with a different attribute for savings % and the amount of savings across several rows. I'm trying to calculate the initial minimum hours to see the sum of minimum hours just once for each process step ID, since it's the same value but repeated over multiple rows.
so group process step ID, identify the min value (which in this case is all the same), and then do a sum of all the one Min Process Tiime Hours column.
i.e.
group 198 and only show the .25 Min Process Time Hours once, group 199 and only show the .25 min process time hours once, and do a sum of all those minimums.
How would I do this??
Solved! Go to Solution.
@Anonymous - Are all of those columns in the same table? Sorry, it's odd how it is posted so wasn't quite sure. If so, the technique should be:
Column =
MINX(
FILTER('Table',[Process Step ID] = EARLIER([Process Step ID])),
[Min Process Time Hours]
)
Measure =
VAR __ProcessStepID = MAX([Process Step ID])
MINX(
FILTER(ALL('Table'),[Process Step ID] = __ProcessStepID),
[Min Process Time Hours]
)
@Anonymous - Are all of those columns in the same table? Sorry, it's odd how it is posted so wasn't quite sure. If so, the technique should be:
Column =
MINX(
FILTER('Table',[Process Step ID] = EARLIER([Process Step ID])),
[Min Process Time Hours]
)
Measure =
VAR __ProcessStepID = MAX([Process Step ID])
MINX(
FILTER(ALL('Table'),[Process Step ID] = __ProcessStepID),
[Min Process Time Hours]
)
Thanks for the formula! I ended up with a different work around but I do appreciate the help
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 |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |