Magnatolia
Board Regular
- Joined
- Jan 19, 2012
- Messages
- 81
- Office Version
- 365
- Platform
- Windows
Hi all,
I have a list of Suburbs, and a list of street names. I want to identify where someone uses a lower case version of these. Basically I want to say, if you find an item within the string that is in the named range, let me know if it is the lowercase version.
This isn't working but I can't figure out why. I can't use EXACT because it will check even words that aren't in the list.
Thanks!
I have a list of Suburbs, and a list of street names. I want to identify where someone uses a lower case version of these. Basically I want to say, if you find an item within the string that is in the named range, let me know if it is the lowercase version.
Code:
=IF(SUMPRODUCT(--ISNUMBER(SEARCH(LOWER(Street_Names),$A7)))>0,"","Err: Check Street Abbreviations")
This isn't working but I can't figure out why. I can't use EXACT because it will check even words that aren't in the list.
Thanks!