long IF statement with lots of OR's

R

René

Hi

Is there a smarter way to write this kind of code ?

If InputParameter1 = "A" And (InputParameter2 = "X" Or InputParameter2 = "Y" Or
InputParameter2 = "Z" and so on) Then
[...]

My intuition would go for something like this:
If InputParameter1 = "A" And InputParameter2 In ("X", "Y", "Z", and so on)

but that doesn't seem to be correct.

Any ideas ?


René
 
T

Tom Ogilvy

Can you be sure InputParameter2 will be one character. If so then

if inputparameter1 = "A" and Instr("XYZ",Inputparameter2) then


if it is more complex than that

Dim res as Variant
res = Application.Match(InputParameter2,Array("XXX","YYY","ZZZ"),0)
if inputparameter1 = "A" and not iserror(res) then

Regards,
Tom Ogilvy
 
M

Mark Bigelow

You could put your parameters in a certain cell and reference that, as
you suggested. For instance:

=IF(AND(A1="xyz", ISERROR(FIND(<the reference to your input parameter>,
<the reference to your list of acceptable values>))=FALSE)=TRUE, 1, 0)

Please let me know if that doesn't work.

Mark

---
Mark Bigelow
mjbigelow at hotmail dot com
http://hm.imperialoiltx.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top