Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
kekepania0529
Helper I
Helper I

Power BI - Calculated Column = Calculated Column divided by Distinct Count Column

I have 2 calculated columns, separately they work as intended: 

  • GT/LB Shipped = IF(LEFT('Inbound Detail'[Product Group],3)="Non",'Inbound Detail'[Adjusted Net],'Inbound Detail'[Adjusted Net GT])
  • Loads = CALCULATE(DISTINCTCOUNTNOBLANK('Inbound Detail'[Ticket #]))

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:

  • GT/LB per Load = DIVIDE('Inbound Detail'[GT/LB Shipped],[Loads],0)
kekepania0529_0-1634241616947.png
 kekepania0529_1-1634241968342.png

 

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

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
)

 

 

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

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! 😎

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.