L
LdoubleE80
I've read through some other 'IF' problems but I'm still confused, s
here goes.
I've used up my 7 IF statements, but have not gotten through all th
data that I need to. What I need it to do is this:
Any number <=12 =12
That is the first limitation. The second one is a bit more complex.
There are 12 different combinations that I have to take into account
and each combination needs to show a different value.
What I tried to d
was=IF(AND(D27<=0.5,H27<=29.9),0.067,IF(AND(D27>0.5,H27<=29.9),0.1,IF(AND(D27<=0.5,H27<=35.9),0.09,IF(AND(D27>0.5,H27<=35.9),0.135,IF(AND(D27<=0.5,H27<=39.9),0.116,IF(AND(D27>0.5,H27<=39.9),0.175,IF(AND(D27<=0.5,H27<=41.9),0.129,)))))))
However, I ran out. As you can see there are 2 different possibilitie
for variable A, and after that is identified 6 possible variables of
of each.
AA BA
AB BB
AC BC
AD BD
AE BE
AF BF
How do I get these 12 combinations to show 12 different variables, whe
the variables are ranges of number (ie. 30-35.9)
I hope I explained that enough.
Thanks guys
here goes.
I've used up my 7 IF statements, but have not gotten through all th
data that I need to. What I need it to do is this:
Any number <=12 =12
12<=24 = 24
24<=30 = 30
30<=36 = 36
36<=40 = 40
40<=42 = 42
42<=48 = 48
48<=54 = 54
54<=60 = 60
60<=72 = 72
72<=96 = 96
96<=120 = 120
That is the first limitation. The second one is a bit more complex.
There are 12 different combinations that I have to take into account
and each combination needs to show a different value.
What I tried to d
was=IF(AND(D27<=0.5,H27<=29.9),0.067,IF(AND(D27>0.5,H27<=29.9),0.1,IF(AND(D27<=0.5,H27<=35.9),0.09,IF(AND(D27>0.5,H27<=35.9),0.135,IF(AND(D27<=0.5,H27<=39.9),0.116,IF(AND(D27>0.5,H27<=39.9),0.175,IF(AND(D27<=0.5,H27<=41.9),0.129,)))))))
However, I ran out. As you can see there are 2 different possibilitie
for variable A, and after that is identified 6 possible variables of
of each.
AA BA
AB BB
AC BC
AD BD
AE BE
AF BF
How do I get these 12 combinations to show 12 different variables, whe
the variables are ranges of number (ie. 30-35.9)
I hope I explained that enough.
Thanks guys