Formula for multiple Criteria
Hello,
I need a formula to put a word “READY” to ColumnA Row if ColumnB value contains a word “Invoice” OR if ColumnC value start with number 1 or 2 or 3.
ColumnA ColumnB ColumnC
READY Invoice 1
READY 13437
READY invoice 24
READY 2399
Thank you for you help.
Best Answer
-
Hi @BonW,
Try this.
=IF(OR(CONTAINS("Invoice", ColumnB@row), LEFT(ColumnC@row, 1) = 1, LEFT(ColumnC@row, 1) = 2, LEFT(ColumnC@row, 1) = 3), "Ready")
Hope that helps,
Dave
Answers
-
Hi @BonW,
Try this.
=IF(OR(CONTAINS("Invoice", ColumnB@row), LEFT(ColumnC@row, 1) = 1, LEFT(ColumnC@row, 1) = 2, LEFT(ColumnC@row, 1) = 3), "Ready")
Hope that helps,
Dave
-
IT WORK! Thank you very much Dave for your help. I'm still learning.😀
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!