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!Learn 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 |
|---|---|
| 50 | |
| 47 | |
| 29 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 90 | |
| 74 | |
| 40 | |
| 26 | |
| 25 |