Help: formula not evaluating intuitively

johng89

New Member
Joined
Jul 11, 2017
Messages
3
Good morning!

I did a bit of searching to solve this on my own but alas, I have been unable to.

I am using a formula to determine how many of these characters exist in a cell:

=SUMPRODUCT(--ISNUMBER(SEARCH(Sheet2!$A$1:$B$28,Sheet1!H2)))

The formula is by default evaluating to 3 and I don't know why ('?' '~' and '*' are evaluating to true when they are not present).

When I add any character in the range to the cell, it evaluates to 4 so it is identifying some correctly.

=SEARCH(Sheet2!$A$1:$B$28,Sheet1!H2)which is evaluating to #VALUE! by itself.

The range containing characters I am searching for is formatted as text as is the cell I am searching within. The cell I am searching for the presence of characters within must be maintained as text because I have many instances of leading zeros.

I have recreated the table below and I changed the references to be relative to the table (B2, B3 and B4 are evaluating to 3 in excel).

How do I get this to evaluate correctly?

UPCCount
885938815014

<tbody>
</tbody>
=sumproduct(--isnumber(search($C$2:$D$30,A2)))a
~
885938815021

<tbody>
</tbody>
=sumproduct(--isnumber(search($C$2:$D$30,A3)))b`
885938815038

<tbody>
</tbody>
=sumproduct(--isnumber(search($C$2:$D$30,A4)))c!
d@
e#
f$
g%
h^
i&
j*
k(
l)
m-
n_
o=
p+
q{
r[
s]
t}
u|
v\
w:
x;
y"
z'
<>
,.
?/

<tbody>
</tbody>
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
***Correction and update***

Correction: I forgot to include a question mark and that would have been 4.

Update: The cases that are causing the "3" to be returned are the tilda, asterisk and a blank. I controlled for the blank by inserting a character from the character map. To convert it to a string literal in the table I preceded the tilda, asterisk and question mark with a tilda so that they appeared in the range as

~~
~?
~*

...and tested adding them to see if they evaluated up with the addition of any of those characters and it worked!

Please close this thread as I have solved it myself after a few hours :P
 
Upvote 0
SEARCH allows the use of Wildcards, so * ? and ~ are being treated as such.

Try changing SEARCH to FIND
This however will make it case sensitive, so you will need to add the capital versions of a b c to your list.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

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