Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Dear All,
I have found the networking days between our confirmed delivery date and shipment date. If we ship according to what we have confirmed to the customer, the value will be 2.
Now I need to find a value that tells me, how many deliveries, we ship according to what we promised = value = 2.
Therefore I need to have a %number, which says how many % of the column networking days = 2.
In the below case, if we imagine that it was all our deliveries for November, we delivered 33,33%. on time.
Networking days is a measured value
Create a measure like this :
Measure =
VAR _SUM=0-SUMX('Table',[NetworkingDays])
var _mindate=MIN('Table'[Shipment_Date])
var _maxdate=MAX('Table'[Shipment_Date])
var _diff=DAY(_maxdate)-DAY(_mindate)-1
return _SUM/_diff
Then you will get a result like below :
NetworkingDays is a measure .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply Ailsa,
I worked until I added some new lines, because now 3 out of 5 lines are 2 networking days which supposed to give me a 60%, But it gives me 29%.
Dear Alisa,
Thanks for the reply, it worked until I added a new line.
Something went wrong, as I now have added a new line, which also shows 2 in networking days, but it gives me the value 400% and not 200%
Thanks!!
@MagnusSvendsen , Assume networkingday is column then
Divide(
countx(filter(Table, Table[networkingday] >=0), Table[Document]),
count(Table[Document])
)
Thanks!!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |