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.
I have 2 calculated columns, separately they work as intended:
I created a new calculated column to figure out the GT/LB per Load, but it returns the GT/LB Shipped, instead of the GT/LB per Load, like it's ignoring the Loads distinct count:
Solved! Go to Solution.
Try using a measure instead of a calculated column since the calculated column will create an implicit measure that sums up each row of the column rather than the ratio that you want.
GT/LB per Load =
DIVIDE (
SUM ( 'Inbound Detail'[GT/LB Shipped] ),
SUM ( 'Inbound Detail'[Loads] ),
0
)
Try using a measure instead of a calculated column since the calculated column will create an implicit measure that sums up each row of the column rather than the ratio that you want.
GT/LB per Load =
DIVIDE (
SUM ( 'Inbound Detail'[GT/LB Shipped] ),
SUM ( 'Inbound Detail'[Loads] ),
0
)
Thank you! That worked! 😎
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 |
|---|---|
| 27 | |
| 26 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 46 | |
| 23 | |
| 18 | |
| 18 |