How can I check a string against the Proper version of a named range?

Magnatolia

Board Regular
Joined
Jan 19, 2012
Messages
81
Office Version
  1. 365
Platform
  1. 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.

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!
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
FIND is case sensitive. See if this works
=IF(SUMPRODUCT(--ISNUMBER(FIND(LOWER(Street_Names),$A2)))>0,"","Err: Check Street Abbreviations")

M.
 
Upvote 0

Forum statistics

Threads
1,216,507
Messages
6,131,059
Members
449,616
Latest member
PsychoCube

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top