The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I need help in finding the Line Item Fill Rate, please help me!
I have the columns, Order_id, Product_id, Order_qty, delivery_qty, in_full (full product quantities delivered).
Line Item Fill Rate = # of customer order lines filled completely / total # of customer order lines.
My understanding:
Filter order_id, then, Countrows(In_Full = 1) / countrows(filter order_id)
Here is the picture of the data, thanks in advance!
Solved! Go to Solution.
measure=
var countinfull=calculate(countrows(TableName),TableName[In_Full]= 1)
var total = countrows(TableName)
return
divide(countinfull,total,0)
Hi
measure=
var countinfull=countrouws(filter(order_id),oreder_id(In_Full = 1))
var total = countrows(order_id)
return
divide(countinfull,total,0)
This isn't working,
The formula is "Number of order lines shipped In Full Quantity / Total Order Lines"
Here The line fill rate = 2/3
Please help with dax
measure=
var countinfull=calculate(countrows(TableName),TableName[In_Full]= 1)
var total = countrows(TableName)
return
divide(countinfull,total,0)