In my code i want to use if condition. In which i want to use "OR" around 18 times. Like for e.g.
If a="something" or a="something" or a="something" or.........(up to 18 times)... then
'do nothing
else
'do action
end if
[Note : value of a is changing in For loop every time] so i just want to ask does there any limitation in IF for using OR in limited times. OR is there any other better way to do the same.
Thanks