Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone, I am new to the community and the BI . I would like to know how to divide the results of a view, since it is complicated to me DAX formulas. In this table I have time ( A) and stops (B ) , but is filed by customers ( C ) . I would like to know how to make ΣA / ΣB regarding C.
Solved! Go to Solution.
Create a new measure:
Measure = SUM([A]) / SUM([B])
Put it in the table and it will be context filtered by row.
Edit for @konstantinos, if you are worried about SUM([B]) being 0, use:
Measure = DIVIDE(SUM[A]),SUM[B])
Create a new measure:
Measure = SUM([A]) / SUM([B])
Put it in the table and it will be context filtered by row.
Edit for @konstantinos, if you are worried about SUM([B]) being 0, use:
Measure = DIVIDE(SUM[A]),SUM[B])
Thanks Smoupre, Your response has been very helpful 😄
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 70 | |
| 38 | |
| 28 | |
| 27 |