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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Dvilches_
Frequent Visitor

Count Operating Days

Hello there,

 

Hope you're doing great! I have a question. I'm using a simple model that const of two tables:

 

  1. FacSales
  2. DimCalendar

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.

1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

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)) 

 

Result:
vchenwuzmsft_1-1646718732616.png

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.

View solution in original post

4 REPLIES 4
v-chenwuz-msft
Community Support
Community Support

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)) 

 

Result:
vchenwuzmsft_1-1646718732616.png

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!

Syk
Super User
Super User

You could create a calculated column to look at your packages moved and if >15k set to true, else set to false.

Syk_0-1646320859492.png

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!

Dvilches_
Frequent Visitor

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.

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.