Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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)
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
10 | |
6 |