tiffanimk1
New Member
I'm trying to write a formula to find keywords in a text string. Since there are variations, I was using a Find function for the keywords that are consistent throughout. But the Find function errors after the first and returns #Value throughout the rest of the nested IF. I tried using an IfError, but it's still not capturing correctly. Where am I going wrong?
Original:
=IF(FIND("ACCESS",K3),IF(FIND("PACKAGE",K3),IF(FIND("ANNUAL",K3),"INCLUDE"),"EXCLUDE"))
With IFERROR:
=IF(IFERROR(FIND("ACCESS",K3),IF(IFERROR(FIND("PACKAGE",K3),IF(IFERROR(FIND("ANNUAL",K3),"INCLUDE"),"EXCLUDE","INCLUDE")))))
Any help is appreciated!
Original:
=IF(FIND("ACCESS",K3),IF(FIND("PACKAGE",K3),IF(FIND("ANNUAL",K3),"INCLUDE"),"EXCLUDE"))
With IFERROR:
=IF(IFERROR(FIND("ACCESS",K3),IF(IFERROR(FIND("PACKAGE",K3),IF(IFERROR(FIND("ANNUAL",K3),"INCLUDE"),"EXCLUDE","INCLUDE")))))
Any help is appreciated!