Forum Discussion

lennox25's avatar
lennox25
Post Patron
2 years ago
Solved

Outstanding Days Calculation excluding weekends and Bank holidays

Hi, 

 

I have this caluclation below, which almost does what I need. I now need to exclude weekends and bank holidays can anyone help me with this please?

 

Days Outstanding =
IF(
    ISBLANK([EndDate])
    ,DATEDIFF([StartDate],TODAY(),DAY)
    ,BLANK()
)