What is a plotter in this regard, a type of printer?
Usually when there is a mismatch there is either different formats
like if a number is imported as text and when matched it will return N/A
because the matching list are numerical numbers. Or as you state there are
hidden characters like trailing and leading spaces.
INDEX(MnthPlotters!A:A,MATCH(October!A2,MnthPlotters!B:B,0)))
you could try by changing the above to
INDEX(MnthPlotters!A:A,MATCH(TRIM(October!A2),MnthPlotters!B:B,0)))
and also this part
COUNTIF(MnthPlotters!A:A,"*A2*")=0
just to test,. Btw, I would probably write the formula like this
=IF(ISNUMBER(MATCH(TRIM(October!A2),MnthPlotters!B:B,0)),INDEX(MnthPlotters!A:A,MATCH(TRIM(October!A2),MnthPlotters!B:B,0)),"add
plotter")
Also while you are at it, find a match that is returned as a mismatch and
compare the cells like
=LEN(lookup_cell)
=LEN(cell_that_looks_like_a_match)
if you get a different number in the 2 cells that you expected to be equal
then the one with largest number has extra characters, then select that cell
and press F2, is there a trailing space then select it and copy it to a new
cell then use this
=CODE(new_cell)
if it is 32 then there is a space, if it is something else post back
HTH

Signature
Regards,
Peo Sjoblom
> Hello,
>
[quoted text clipped - 41 lines]
>
> Thanks so much for any help you can give me!
Vicki - 08 Oct 2007 15:55 GMT
Hi Peo,
Thanks so much for responding. When I adjusted my formula as you suggested I
received "The formula you typed contains an error" message.
The formula that I ended up using and seems to be working is:
=IF(COUNTIF(MnthPlotters!A:A,A3)=0,"Add Plotter","")
Thanks again and have a great day!
> What is a plotter in this regard, a type of printer?
> Usually when there is a mismatch there is either different formats
[quoted text clipped - 80 lines]
> >
> > Thanks so much for any help you can give me!