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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jl20
Helper IV
Helper IV

Working Days Calc - Need Help

Hi all,

 

I'm having a lot of trouble writing the syntax for a seemingly simple requirement. 

 

Table 1: [employee name] [last worked date]

 

Table 2: Standard date table, ending with today's date

 

Desired Output:

 

Employee name                Date Last Worked                Potential Working Days*        Total Potential Working Day in Current Month**

John Smith                           2/15/18                                    11                                          17

Jane Doe                              2/2/18                                       2                                           17

etc.

 

*Equal to count of weekdays in the current month, subject to the limitation that they must have occurred before the Date Last Worked.

** Will be the same for all employees - in this case, there are 17 working days between Feb 1 and Feb 23 (including today).

I'm using the following expression, where IsWorkingDay is a calc column on the date table with 1s (Weekdays)/0s (Weekends), and it's working: 

Potential Working Days in Current Month =

CALCULATE(

 SUM('Calendar'[IsWorkingDay]),

   DATESBETWEEN('Calendar'[Date],EOMONTH(TODAY(),-1),TODAY())          -1                                           )

 

I've found several proposed solutions on the forum but am not having any luck and my memory is getting eaten up and failing using the SUMX solution.

 

Any insight would be appreciated.

 

Thanks!

1 ACCEPTED SOLUTION

Hey, you can use this DAX statement to calculate the total available workingdays

Total Working Days = 
VAR mytable =
    ADDCOLUMNS (
        GENERATESERIES (
            DATE ( YEAR ( employee[LastWorkingDate] ), MONTH ( 'employee'[LastWorkingDate] ), 1 ),
            DATE ( YEAR ( employee[LastWorkingDate] ), MONTH ( 'employee'[LastWorkingDate] )+1, 1) -1
        ),
        "Week_Day", WEEKDAY ( [Value], 2 )
    )
RETURN
    COUNTROWS ( FILTER ( mytable, [Week_Day] <= 5 ) )

Here is a little screenshot

 

2018-02-23_22-26-22.png



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

8 REPLIES 8
Zubair_Muhammad
Community Champion
Community Champion

@jl20

 

Try this calculated column

Assuming workingdays from Monay to Friday

 

Potential Working Days =
VAR mytable =
    ADDCOLUMNS (
        GENERATESERIES (
            DATE ( YEAR ( Table1[Date Last Worked] ), MONTH ( Table1[Date Last Worked] ), 1 ),
            Table1[Date Last Worked]
        ),
        "Week_Day", WEEKDAY ( [Value], 2 )
    )
RETURN
    COUNTROWS ( FILTER ( mytable, [Week_Day] <= 5 ) )

Regards
Zubair

Please try my custom visuals

@jl20

 

workingdays.png


Regards
Zubair

Please try my custom visuals

Thanks! That worked for that piece of the equation. Is there a clean way to calculate potential working days for the entire month, if my date table only goes through today?

 

For example, because of that limitation, my count is only 18 using this formula: 

Working Days in Month = CALCULATE(SUM('Calendar'[IsWorkingDay]),DATESBETWEEN('Calendar'[Date],EOMONTH(TODAY(),-1),EOMONTH(TODAY(),0)))

 

Thanks

Hey, you can use this DAX statement to calculate the total available workingdays

Total Working Days = 
VAR mytable =
    ADDCOLUMNS (
        GENERATESERIES (
            DATE ( YEAR ( employee[LastWorkingDate] ), MONTH ( 'employee'[LastWorkingDate] ), 1 ),
            DATE ( YEAR ( employee[LastWorkingDate] ), MONTH ( 'employee'[LastWorkingDate] )+1, 1) -1
        ),
        "Week_Day", WEEKDAY ( [Value], 2 )
    )
RETURN
    COUNTROWS ( FILTER ( mytable, [Week_Day] <= 5 ) )

Here is a little screenshot

 

2018-02-23_22-26-22.png



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

That works, thanks!

@jl20

 

For the full month's working days, you can replace

 

TODAY()

with
EOMONTH ( Table1[Date Last Worked], 0 )


Regards
Zubair

Please try my custom visuals

@Zubair_Muhammad an elegant usage of GENERATESERIES(...)



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

@jl20

 

Similarly

 

Total Potential Working Days in Current Month =
VAR mytable =
    ADDCOLUMNS (
        GENERATESERIES (
            DATE ( YEAR ( Table1[Date Last Worked] ), MONTH ( Table1[Date Last Worked] ), 1 ),
            TODAY ()
        ),
        "Week_Day", WEEKDAY ( [Value], 2 )
    )
RETURN
    COUNTROWS ( FILTER ( mytable, [Week_Day] <= 5 ) )

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.