Nested IF formula with If/And
BFuller
✭✭✭
Hello,
I have the following formula that works, I just can't figure out how to include the date qualifier. Can someone please help? Thank you in advance!
If the assigned PCD is one of two people, I need my manager column to read Manager A's name. If it is anyone else, I need it to show Manager B's name. I want to add that this only applies to assignments that were added on or after December 16, 2024.
=IF([PCD assigned]@row = "PCD 1", "Manager A", IF([PCD assigned]@row = "PCD 2", "Manager A", "Manager B"))
Answers
-
Try this:
=IF([Date Column]@row >= DATE(2024, 12, 16), IF(OR([PCD Assigned]@row = "PCD 1", [PCD Assigned]@row = "PCD 2"), "Manager A", "Manager B"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!