Y
Ymtrader
The only way I know how to do this is with a really ugly nested IF
statement. Is there a better way?
I have 8 "zones" of numbers and I need to determine which zone this
number fits into.
zn1 zn2 zn3
zn4 zn5 zn6 zn7
zn8
1410 1416 1416 1421 1421 1423 1423 1436 1436 1437 1437
1439 1439 1445 1445 1450
If I need to know what zone number 1422 fits into I can only to think
of a nested IF statement:
IF(P2>G2,IF(P2<H2,"ZN3")..................................................................................................................)
I am thinking there must be an easier more efficient way. Any ideas?
Thanks!
statement. Is there a better way?
I have 8 "zones" of numbers and I need to determine which zone this
number fits into.
zn1 zn2 zn3
zn4 zn5 zn6 zn7
zn8
1410 1416 1416 1421 1421 1423 1423 1436 1436 1437 1437
1439 1439 1445 1445 1450
If I need to know what zone number 1422 fits into I can only to think
of a nested IF statement:
IF(P2>G2,IF(P2<H2,"ZN3")..................................................................................................................)
I am thinking there must be an easier more efficient way. Any ideas?
Thanks!