Incorrect Argument Set for MATCH, IF, AND formula
Hi there,
I feel like I'm close to a solution. I'm working in a symbol column that I would like to automate to turn either Gray or Green.
I would like to match a row across different sheets, if specific columns are blank on the other sheet for the match row, I'd like to return a gray symbol, if any one of them is not blank, I'd like to return a green symbol.
I've tried to nest an IF/AND statement into a MATCH operation. I'm getting 'incorrect argument set'.
=MATCH([NCT Number]@row, {NCT}, (IF(AND({Update Expected} = "", {Corrections Expected} = "", {Results Expected} = "", {All Results Expected} = ""), "Gray", "Green")), 0)
Is this figure-out-able?
Thank you!
Meredith
Best Answer
-
Hi @Meredith Rhodes,
Give this a try.
=IF(COUNTIFS({NCT}, =[NCT Number]@row, {Update Expected}, ="", {Corrections Expected}, ="", {Results Expected}, ="", {All Results Expected}, ="") > 0, "Gray", "Green")
Hope that helps,
Dave
Answers
-
Hi @Meredith Rhodes,
Give this a try.
=IF(COUNTIFS({NCT}, =[NCT Number]@row, {Update Expected}, ="", {Corrections Expected}, ="", {Results Expected}, ="", {All Results Expected}, ="") > 0, "Gray", "Green")
Hope that helps,
Dave
-
Yes! Thank you @DKazatsky2! Success!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.2K Get Help
- 360 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!