Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
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!!!