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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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 😄
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 112 | |
| 109 | |
| 40 | |
| 33 | |
| 27 |