"IF/And" formula
Answers
-
Im working on a "IF/And" formula myself that references whether or not certain boxes are checked.
=IF(AND([Column1]@row <> 1, [Column2]@row <> 1), "Status 1 ", IF(AND([Column1]@row = 1, "Status 2"), IF(AND([Column2]@row = 1, "Status 3")))). When I check the boxes I get an "Invalid Data Type". It's a drop-down menu that works when the boxes aren't check and it returns "Status 1". When I check either of the boxes in Column 1 or Column 2 I get "#Invalid Data Type". Any help is appreciated.
-
The first statement is correct, but the second two statements don't need the AND portion. Try this:
=IF(AND([Column1]@row <> 1, [Column2]@row <> 1), "Status 1 ", IF([Column1]@row = 1, "Status 2", IF([Column2]@row = 1, "Status 3")))
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 61 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!