This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi all,
I could not find the right formula for the below, can someone please assist:
I have two columns in one dataset, the one column is sales and the other is product quantity.
The sales column is not fully populated, but the quantity is.
When I try and divide sales by quantity I get the correct information in a matrix, but the total is incorrect.
How do I divide the sales, looking at the quantity ONLY when there is a sales value?
Thanks,
Solved! Go to Solution.
Hi all,
I solved the incorrect totals by creating a calculated column and not a measure.
Thanks!
Hi all,
I solved the incorrect totals by creating a calculated column and not a measure.
Thanks!
Hi @John_V12 ,
Try to create a measure like below:
Measure = DIVIDE(SUM('Table'[Sales]),SUM('Table'[Quantity]))
If the problem persists, please share some sample data and the results you expect.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @John_V12
Try this...
DIVIDE(
[SalesValue],
[Quantity],
BLANK()
)
DIVIDE() function will substitute BLANK() for any row where it cannot perform division (Quantity = 0 or is missing a value).
Hope this helps!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 24 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |