Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
@Anonymous 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 @Anonymous ,
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 @Anonymous ,
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
@Anonymous 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.