J
James8309
Hi, Everyone
Let me first explain what I am trying to achieve very briefly.
1. If A1 = "E" and A2 >A3 and A3<A4 then return "ABC"
= > I know I can do this by using " if(and(A1="E",A2>A3,
A3>A4),"ABC",""))
However! However!!
2. if A1 = "E" stays same... except next criterias are different and
yes there are 95 of them. I just thought that it is painful to use
"And" function to hook up all the three criterias.
i.e. a) A1 = "E", A2<A3, A3=A4, then return "DEF" etc etc
b) A1 = "E", A2=A3, A4>A3 then return "XXX" etc etc etc etc x 95
times.
Is there any other way to lock that A1 = "E" ?? so I don't have to
type "And(A1 = "E", etc etc )" 95 times???
Should I be using VBA instead? Would that be easier?
Thank you for your help in advance!
Let me first explain what I am trying to achieve very briefly.
1. If A1 = "E" and A2 >A3 and A3<A4 then return "ABC"
= > I know I can do this by using " if(and(A1="E",A2>A3,
A3>A4),"ABC",""))
However! However!!
2. if A1 = "E" stays same... except next criterias are different and
yes there are 95 of them. I just thought that it is painful to use
"And" function to hook up all the three criterias.
i.e. a) A1 = "E", A2<A3, A3=A4, then return "DEF" etc etc
b) A1 = "E", A2=A3, A4>A3 then return "XXX" etc etc etc etc x 95
times.
Is there any other way to lock that A1 = "E" ?? so I don't have to
type "And(A1 = "E", etc etc )" 95 times???
Should I be using VBA instead? Would that be easier?
Thank you for your help in advance!