I have a brick selection sheet with Data Validations in Lists of Brick Blends.
I have added * to the end of each brick blend type to signify the amount of
different bricks ie. Colonial Blend** means 2 x different bricks required
(Non Chargeable to client) and Homestead Blend*** means 3 x Different Bricks
required. (Chargeable to client)
I have tried to write a formula that puts an X in a cell adjacent to the
Data Validation cell (means Chargeable to client) for 3 brick blend and if it
is anything else leave the cell blank. I keep getting the #VALUE! Error.
For Example:- =IF(FIND("***",J19,1)>0,"X","")
It works fine putting the "X" value in the adjacent cell, but when I want it
to return a value of nothing ("") it gives me the error.
Dave F - 10 Apr 2007 13:18 GMT
One possible fix:
=IF(ISERROR(FIND("***",J19,1)),"",IF(FIND("***",J19,1)>0,"X"))
Dave

Signature
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.
> I have a brick selection sheet with Data Validations in Lists of Brick Blends.
> I have added * to the end of each brick blend type to signify the amount of
[quoted text clipped - 9 lines]
> It works fine putting the "X" value in the adjacent cell, but when I want it
> to return a value of nothing ("") it gives me the error.
Joel - 10 Apr 2007 13:42 GMT
ther werre two things wrong. first the * ws being treated as a wild carrd
character not a real *. Need to switch to Search to handle the *. the ~
tells search tto look for the * (not a wild carrd). Second problem if ***
wasn't found a value error is returned from both find and search. had to add
ISNUMBER to eliminate the error that occured when *** was not found.
=IF(ISNUMBER(SEARCH("~*~*~*",D8,1)),"X","")
> I have a brick selection sheet with Data Validations in Lists of Brick Blends.
> I have added * to the end of each brick blend type to signify the amount of
[quoted text clipped - 9 lines]
> It works fine putting the "X" value in the adjacent cell, but when I want it
> to return a value of nothing ("") it gives me the error.
Dave Peterson - 10 Apr 2007 13:55 GMT
I don't think you want the tilde character if you use =Find(). But when you
switched to =search(), it was required.
(I thought it was interesting.)
> ther werre two things wrong. first the * ws being treated as a wild carrd
> character not a real *. Need to switch to Search to handle the *. the ~
[quoted text clipped - 17 lines]
> > It works fine putting the "X" value in the adjacent cell, but when I want it
> > to return a value of nothing ("") it gives me the error.

Signature
Dave Peterson
XR6T4GC - 10 Apr 2007 14:26 GMT
Thanks Joel,
As I said to Dave, your help is much appreciated.
Grant.
> ther werre two things wrong. first the * ws being treated as a wild carrd
> character not a real *. Need to switch to Search to handle the *. the ~
[quoted text clipped - 17 lines]
> > It works fine putting the "X" value in the adjacent cell, but when I want it
> > to return a value of nothing ("") it gives me the error.
Dave Peterson - 10 Apr 2007 13:44 GMT
Another one:
=IF(ISNUMBER(FIND("***",J19)),"X","")
> I have a brick selection sheet with Data Validations in Lists of Brick Blends.
> I have added * to the end of each brick blend type to signify the amount of
[quoted text clipped - 9 lines]
> It works fine putting the "X" value in the adjacent cell, but when I want it
> to return a value of nothing ("") it gives me the error.

Signature
Dave Peterson
XR6T4GC - 10 Apr 2007 14:24 GMT
Thanks Dave, Much appreciated.
I'm just an amateur at this, and guys like you are worth their weight in gold.
The girls at work will be most impressed when I tell them "I" figured it out
LOL.
Thanks again mate.
Grant.
> Another one:
>
[quoted text clipped - 13 lines]
> > It works fine putting the "X" value in the adjacent cell, but when I want it
> > to return a value of nothing ("") it gives me the error.