Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hello there,
Hope you're doing great! I have a question. I'm using a simple model that const of two tables:
My company move several packages in a daily basis, however sometimes thare are some pendings shipmets that need to be done on saturdays.
My question is, how can i count operating days of a certain month based on packages quantities? For instance:
February:
Days: 28
Days with movements: 25 (this number i obtained using Distincount('FactSales'[Date]))
Ops Days: 20 (this is my objective discounting the days in which packages less than or equal to 15000 are moved. In other words I'm trying to get the business days as the days go by. I think doing it this way is better as it would detect the holidays )
As additional information, there is a threshold in terms of packages. On a Saturday they will never exceed 15,000 packages sent, while on weekdays this value exceeds 50,000 per day)
Thanks in advance,
Diego V.
Solved! Go to Solution.
Hi @Dvilches_,
count days if the day is greater then 15,000.
Count operating days = COUNTROWS(filter(SUMMARIZE('FacTable',[Date],"sum",SUM(FacTable[packages])),[sum]>15000))
Pbix file in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Dvilches_,
count days if the day is greater then 15,000.
Count operating days = COUNTROWS(filter(SUMMARIZE('FacTable',[Date],"sum",SUM(FacTable[packages])),[sum]>15000))
Pbix file in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You tha best! Working fine. Power Query i think that i handle it quite well, but currently i'm in the DAX journey.
Thanks for your time and this solution!
You could create a calculated column to look at your packages moved and if >15k set to true, else set to false.
Then you could use it to filter your data by setting it to true. Or you could create a measure to count days where it is true. Depends what you need it for!
Hey Syk,
That would be useful if you grouped the data, but i would lose granularity.. In this case the data comes for shiptment ID. In average, each shipmet have 1-3 packages.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.