Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I would like help to produce a column that counts the number of working days between the Date Received column and the Date Acknowledged column that excludes dates that fall on weekends and UK holidays.
I have tried following some examples for historical Power BI forum posts but all these seem to equate to an error.
So, I have produced this sample file with the aim that this will help to provide a workable solution.
Many thanks in advance for your assistance.
PaulMc
Link to Sample File - Let me know if there are issues accessing the file.
Solved! Go to Solution.
Sure. I added this measure as another value in the table you provided:
Working Days =
COUNTROWS(
FILTER(
ALL(DateDimension),
DateDimension[Day of Week] <> 5 && DateDimension[Day of Week] <> 6 &&
DateDimension[Is Public Holiday?] = "No" &&
DateDimension[Date] < SELECTEDVALUE(Data[Date Acknowledged]) &&
DateDimension[Date] >= SELECTEDVALUE(Data[Date Received])
)
)I wasn't sure whether to count the day it was acknowledged or the day it was received in the count, so I just picked one. For example, if an item was acknowledged and then received on the next day, should that be 1 (since one day has passed) or 2 (there have been 2 calendar days involved)? If it was acknowledged on Friday and recieved on Sunday, should that be 1(counting Friday) or 0 (since no business days have passed since acknowledgement)? Change the less than/greater than or equal to signs accordingly.
Sure. I added this measure as another value in the table you provided:
Working Days =
COUNTROWS(
FILTER(
ALL(DateDimension),
DateDimension[Day of Week] <> 5 && DateDimension[Day of Week] <> 6 &&
DateDimension[Is Public Holiday?] = "No" &&
DateDimension[Date] < SELECTEDVALUE(Data[Date Acknowledged]) &&
DateDimension[Date] >= SELECTEDVALUE(Data[Date Received])
)
)I wasn't sure whether to count the day it was acknowledged or the day it was received in the count, so I just picked one. For example, if an item was acknowledged and then received on the next day, should that be 1 (since one day has passed) or 2 (there have been 2 calendar days involved)? If it was acknowledged on Friday and recieved on Sunday, should that be 1(counting Friday) or 0 (since no business days have passed since acknowledgement)? Change the less than/greater than or equal to signs accordingly.
@CmcmahanYou! Are! A! Star!
Now, is there a way I can tweak your DAX measure to do the samething but as a custom column in Power Query?
Many thanks
PaulMc
You can create calculated columns with DAX, no need to involve Power Query. https://docs.microsoft.com/en-us/power-bi/desktop-tutorial-create-calculated-columns
All you should need to do is to replace SELECTEDVALUE in the above query with EARLIER, due to the different context.
@PaulMac you can also try following measure
Days Count =
VAR __dateTable =
CALENDAR ( MAX ( Data[Date Received] ), MAX ( Data[Date Acknowledged] ) )
VAR __table =
INTERSECT (
__dateTable,
CALCULATETABLE (
VALUES ( DateDimension[Date] ),
ALL ( DateDimension ),
DateDimension[Is Public Holiday?] = "No",
DateDimension[Day of Week] <= 4
)
)
RETURN
COUNTROWS ( __table )
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |