"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 information? ๐ | 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
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!