wsnyder
Board Regular
- Joined
- Sep 23, 2018
- Messages
- 224
- Office Version
- 365
- Platform
- Windows
Hi all,
I have a Nested If Formula that returns an error sometimes even though the pattern being sought does exist.
I chose a few samples at random that return errors. I created a single line IF statement based on the content of A and the correct result was returned.
Ideas what I am missing here?
Thanks,
-w
I have a Nested If Formula that returns an error sometimes even though the pattern being sought does exist.
I chose a few samples at random that return errors. I created a single line IF statement based on the content of A and the correct result was returned.
Ideas what I am missing here?
Thanks,
-w
Excel Formula:
=IF(AND(FIND("Fruit",A162),FIND("Group A",A162)),"Fruit-A",
IF(AND(FIND("Fruit",A162),FIND("Group B",A162)),"Fruit-B",
IF(AND(FIND("Fruit",A162),FIND("Group C",A162)),"Fruit-C",
IF(AND(FIND("Fruit",A162),FIND("Group D",A162)),"Fruit-D","Missing"
)
)
)
)