Using workdays and adding holiday reference
Hi Community
I am trying to output only workdays so not Saturdays and Sundays.
On a second note I have a sheet called Holidays with specific holidays I need to exclude in the same formula, via reference another sheet. The holiday sheet is called Holidays and the column where it is located is column 8
But how can I do this easily, something like ....<> ""; WORKDAY...?
This is the formula from the date column
Thanks 😊
Answers
-
You are going to end up with something like this...
=WORKDAY([Start Date]@row, ##, {Other Sheet Holidays Column})
-
Hi Paul,
and thanks
Sorry i did not add the original formula
=IF([SLA Model]@row = "Normal (6 Days)"; ([Send-out date]@row - 6) + " - " + [Send-out time (GMT)]@row; IF([SLA Model]@row = "Fast Track (4 Days)"; [Send-out date]@row - 4; IF([SLA Model]10 = "Emergency (2 Days)"; [Send-out date]@row - 2) + " - " + [Send-out time (GMT)]@row))
-
Where are you trying to incorporate your holidays?
-
after [Send-out date]@row - 4 -{[Holidays]}
It's fetched from another sheet called holidays via Smartsheet function "Reference another sheet" -> Holidays -> Column 8
-
Try this...
=WORKDAY([Send Out Date]@row; IF([SLA Model]@row = "Normal (6 Days)"; - 6; IF([SLA Model]@row = "Fast Track (4 Days)"; -4; IF([SLA Model]10 = "Emergency (2 Days)"; -2))); {Other Sheet Holiday Range}) + " - " + [Send-out time (GMT)]@row
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!