Calculate Vacation dates and entitlements
I am trying to figure out a formula for vacation entitlements example below
Years of service 0-4 is 10 days
Years of service 5-9 is 15 days
Years of service 10-14 20 days
Years of service 15 and is max and does not matter if it hits 100 years 25 Days
Best Answer
-
Assuming you have a column called "Years Of Service" with the numerical value for the number of years of service, you can have an Entitlement Days column with a column formula of:
=IF(ISNUMBER([Years Of Service]@row), IF([Years Of Service]@row < 5, 10, IF([Years Of Service]@row < 10, 15, IF([Years Of Service]@row < 15, 20, 25))), "")
Thanks,
James
CTO, Smarter Business Processes
Answers
-
Assuming you have a column called "Years Of Service" with the numerical value for the number of years of service, you can have an Entitlement Days column with a column formula of:
=IF(ISNUMBER([Years Of Service]@row), IF([Years Of Service]@row < 5, 10, IF([Years Of Service]@row < 10, 15, IF([Years Of Service]@row < 15, 20, 25))), "")
Thanks,
James
CTO, Smarter Business Processes
-
Thanks so much it worked like a charm
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!