Hello,
I'm trying to write a formula for a date that will say something like "due in 18 business days".
So basically " =[column name] + 18" but exclude weedend days. Is that possible?
Thanks so much!
This.
="Due in " + NETWORKDAYS(TODAY(), [ColumnWithDate]1) + " business days."
Thank you very much!!!