Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am trying to calculate days off from two date columns where 'days off start' is the first day of vacation and the "days off end" is the last day of vacation which when simply doing end-start includes weekends which I don't want to take into account.
WHAT I NEED TO SOLVE IS:
IF I could have the [days off excluding wknds] calculation below take into account when "days off start" and "days off end" are null/empty to return a zero because there are no days off to be accounted for that would fix my issue unless there is an easier way to achieve "days off excluding weekends" or combine "days off excluding wknds" +''Adj days off"
Thanks in advance!!!
Solved! Go to Solution.
@omcknac Generally I do something like below. Wasn't sure if [Days Off Start] and [Days Off End] were measures or columns so you may have to adjust.
Days off excluding wknds measure =
VAR __Start = MAX( 'Capacities'[Days Off Start] )
VAR __End = MAX( 'Capacities'[Days Off End )
VAR __Result =
IF( __Start = BLANK() || __End = BLANK(),
0,
COUNTROWS(
FILTER(
ADDCOLUMNS(
CALENDAR( __Start , __End ),
"__Weekday", WEEKDAY( [Date], 2 )
),
[__Weekday] < 6
)
)
RETURN
__Result
Hi @omcknac ,
Thanks for Greg_Deckler reply.
You can also try NETWORKDAYS function, this will avoid counting weekends
Days off =
VAR StartDate = SELECTEDVALUE('Table'[days off start])
VAR EndDate = SELECTEDVALUE('Table'[days off end])
RETURN
IF(
ISBLANK(StartDate) || ISBLANK(EndDate),
0,
NETWORKDAYS(StartDate, EndDate)
)
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @omcknac ,
Thanks for Greg_Deckler reply.
You can also try NETWORKDAYS function, this will avoid counting weekends
Days off =
VAR StartDate = SELECTEDVALUE('Table'[days off start])
VAR EndDate = SELECTEDVALUE('Table'[days off end])
RETURN
IF(
ISBLANK(StartDate) || ISBLANK(EndDate),
0,
NETWORKDAYS(StartDate, EndDate)
)
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@omcknac Generally I do something like below. Wasn't sure if [Days Off Start] and [Days Off End] were measures or columns so you may have to adjust.
Days off excluding wknds measure =
VAR __Start = MAX( 'Capacities'[Days Off Start] )
VAR __End = MAX( 'Capacities'[Days Off End )
VAR __Result =
IF( __Start = BLANK() || __End = BLANK(),
0,
COUNTROWS(
FILTER(
ADDCOLUMNS(
CALENDAR( __Start , __End ),
"__Weekday", WEEKDAY( [Date], 2 )
),
[__Weekday] < 6
)
)
RETURN
__Result
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.