Formula help to convert from total days to business days

I have this formula which gives me the total # of days to complete a construction interval,

=IF(NOT(ISBLANK([Construction in Progress Date]@row)), ([Into Pending Lateral Date]@row - [Construction in Progress Date]@row))

How can I convert this to business/work days total?

Best Answer

  • =Chris Palmer
    =Chris Palmer Community Champion
    Answer βœ“

    How about this:
    =IF(AND(NOT(ISBLANK([Construction in Progress Date]@row)),
    NOT(ISBLANK([Into Pending Lateral Date]@row))),NETWORKDAYS([Construction in Progress Date]@row, [Into Pending Lateral Date]@row),"")

    It ensures both start and end dates are present.
    Only then computes business days, otherwise, returns a blank (""), not 1 or error

    https://www.linkedin.com/in/zchrispalmer/

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!