Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Excluding weekend days from formula

Hi all, 
 
i'm trying to create a measure which shows me the % illness in a month/year, etc. I created the following measure which shows me the days that resources have been ill (based on start and end date of the notification). Underlying measure shows me the days ill per resource in a specific period incl. weekend days. 
# Days ill = sumx(values(Resource[ID]), SUMX(VALUES('Dimdate'[Date]), [# Ill]*[# FTE]))
 
But unfortenately I would like to know the days will excluding weekend days. I do have a column in the dimdate table which shows me true or false for "IsWeekend. "But i dont know how to add that in the formula above. 
 
Hopefully Somebody can help me? 🙂 Thanks in advance!
 
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Anonymous ,

    You can create a calculated column as below in the table 'resource' to get the number of working days:

    # Days ill =
    CALCULATE (
        COUNTROWS ( 'DimDatum' ),
        FILTER ( 'DimDatum', 'DimDatum'[Is_Weekend] = "false" ),
        DATESBETWEEN ( 'DimDatum'[Date], 'resource'[Start Date], 'resource'[End Date] )
    )

    If the above one can't help you get the desired result, please provide some raw data in your table 'resource' (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards

6 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous 

     

    Try by using NETWORKDAYS dax.

    It will help you to exclude weekend between two dates.

    NETWORKDAYS ( DATE ( 2022, 5, 28 ), DATE ( 2022, 5, 30 ), 1 )

     

    Best Regards 

    Shreya

    If my answer was helpful, please consider Accept it as the solution to help the other members find it

    Click on the Thumbs-Up icon if you like this reply 

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Shreyamukkawar, 

       

      I do have a column in my dimdate that shows me whether a day is a weekend day or a weekday, so thats not the problem. The problem is to add this value as a filltervalue in this part of the formula: SUMX(VALUES('Dimdate'[Date])

      So i need to add something like ,filter(dimdate, 'dimdate'[isweekend] = "false"), but unfortenately thats not working. 

       

  • Anonymous's avatar
    Anonymous
    Not applicable

    Try using this.

    Sumx(filter(dimdate, 'dimdate'[isweekend] = "false");VALUES('Dimdate'[Date]))

    • Anonymous's avatar
      Anonymous
      Not applicable
      Tried that as well, but gives me an error as well 

      # Days ill =
      sumx(values(resource[ID]), Sumx(filter(dimdatum, 'DimDatum'[Is_Weekend] = "false"),VALUES('DimDatum'[Datum]) , [# Ill]*[# FTE]))
       
      Error is too many arguments were passed to the sumx function. Maximum argument count for function is 2. 
      • Anonymous's avatar
        Anonymous
        Not applicable

        Hi Anonymous ,

        You can create a calculated column as below in the table 'resource' to get the number of working days:

        # Days ill =
        CALCULATE (
            COUNTROWS ( 'DimDatum' ),
            FILTER ( 'DimDatum', 'DimDatum'[Is_Weekend] = "false" ),
            DATESBETWEEN ( 'DimDatum'[Date], 'resource'[Start Date], 'resource'[End Date] )
        )

        If the above one can't help you get the desired result, please provide some raw data in your table 'resource' (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

        How to upload PBI in Community

        Best Regards

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous 

     

    Keen to know if you managed to solve this??

     

    I have a similar issue where i'm calculating sickness absence per month based on start/end dates which span months. I've got a nice measure which works out the days someone is absent in each month, but it includes weekends and i can't work out how to exclude them!!

     

    Like you i've also created a weekend true/false in my date table but can't work out how to filter against it using the sumx

     

    Nightmare!