Hello!
I need to be able to obtain a measure that will give me back the number of working days elapsed in the month, taking into account today and the holidays that have been in the month. -
Data:
Month November
Public Holidays: 1 ( 21/11/22 ).-
Working days: 21 ( working days = Monday to Friday ).
Expected result (as of 11/27/22):
Working days: 18
I have created a calendar table, which I have linked with the Holidays table and I have determined the working days "Working Day".-
I will appreciate your answer.
Solved! Go to Solution.
Hi, @Syndicate_Admin ;
Try this, it should work:
count =
CALCULATE(COUNT('Table'[Working Day]),FILTER('Table',[Date]<TODAY()&& 'Table'[Working Day]="Yes"))
Or
count =
CALCULATE (
COUNT ( 'Table'[Working Day] ),
FILTER (
'Table',
EOMONTH ( [Date], 0 ) = EOMONTH ( TODAY (), 0 )
&& [Date] < TODAY ()
&& 'Table'[Working Day] = "Yes"
)
)
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Syndicate_Admin ;
Try it.
count =
CALCULATE(COUNT('Table'[Working Day]),FILTER('Table',[Date]<DATE(2022,11,27)&& 'Table'[Working Day]="Yes"))
the final show:
In additional, Expected result (as of 11/27/22): why is "as of 11/27/22"?
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello!
Thank you for your reply.
QUizas do not express me correctly.- The date 27/11 was just an example to be able to visualize an expected result.-
It is not necessary to put filters on any date, I just need you to tell me the working days that have elapsed of the month.
As if to give another example, today 29/11/22 the result should be 19 days elapsed of the 21 working days of the month of November.
I hope it has been clear and that you can with that info help me.-
Thank you.
Hi, @Syndicate_Admin ;
Try this, it should work:
count =
CALCULATE(COUNT('Table'[Working Day]),FILTER('Table',[Date]<TODAY()&& 'Table'[Working Day]="Yes"))
Or
count =
CALCULATE (
COUNT ( 'Table'[Working Day] ),
FILTER (
'Table',
EOMONTH ( [Date], 0 ) = EOMONTH ( TODAY (), 0 )
&& [Date] < TODAY ()
&& 'Table'[Working Day] = "Yes"
)
)
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks a lot! It works!!
Hi @Syndicate_Admin ,
I think first you have to create a measure to count the business days:
Business Days =
CALCULATE(
COUNTROWS('Date'),
'Date'[Dia Laborial] ="Si"
)
then another measure for the calculation month-to-date:
Business Days MTD =
CALCULATE(
[Business Days],
DATESMTD('Date'[Date])
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello, Thank you for your prompt response.-
The measure that tells me the number of working days of the month, I already had calculated:
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
210 | |
49 | |
45 | |
44 | |
42 |
User | Count |
---|---|
262 | |
211 | |
103 | |
79 | |
65 |