Forum Discussion
Excluding weekend days from formula
- Anonymous3 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
- AnonymousNot 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
- AnonymousNot 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.
- AnonymousNot applicable
Try using this.
Sumx(filter(dimdate, 'dimdate'[isweekend] = "false");VALUES('Dimdate'[Date]))
- AnonymousNot applicableTried 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.- AnonymousNot 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
- AnonymousNot 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!