Can I exclude certain criteria from my formula?
Hi there,
I have 3 main columns I am working with.
Column A = multi select dropdown (words/text)
Column B = A Date that is manually entered
Column C = A formula that counts 5 days from the date in Column B:
=IFERROR(WORKDAY([Column B]@row, 5, Holidays:Holidays), " ")
This formula is working well. It counts 5 days forward, excluding weekends and holidays.
What I am hoping to do, is not count 5 days forward, but return the same date in Column C as the date that appears in Column B, but only "IF" a certain word appears in Column A.
I am not sure what formula to add to my existing formula or how to nest or string them together. I was assuming i would need an IF or Vlookup, but not sure how to proceed.
Please help!
Thanks in advance
Nat
Best Answer
-
Try below,
IF(CONTAINS("SomeString", [Column A]@row), [Column B]@row, IFERROR(WORKDAY([Column B]@row, 5, Holidays:Holidays), " "))
Answers
-
Try below,
IF(CONTAINS("SomeString", [Column A]@row), [Column B]@row, IFERROR(WORKDAY([Column B]@row, 5, Holidays:Holidays), " "))
-
Thanks, this works perfectly!
-
Great! Glad I was able to help.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 494 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!