Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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 😄
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 |
|---|---|
| 97 | |
| 73 | |
| 50 | |
| 46 | |
| 44 |