IF function incompetent wrote...
>Here is what I am trying to do
>
>The idea is that if J16 equals 0, then G11 will show 0
>If J16 is greater than 0 and less than 1, then G11 will show 0
Since 0 < 1, these could be combined into 'if J16 < 1, G11 shows 0'.
>If J16 is equal to 1 but less than 2, then G11 will show 1.5
>If J16 is equal to 2 but less than 3, then G11 will show 1.75
>If J16 is equal to 3 but less than 4, then G11 will show 2
>If J16 is equal to 4 but less than 5, then G11 will show 2.5
...
Use LOOKUP. Without validation checking (ensuring J16 >= 0),
=LOOKUP(J16,{0;1;2;3;4;5},{0;1,5;1.75;2;2.5})
IF function incompetent - 12 Feb 2008 17:54 GMT
You are a genious! thanks so much for your help!!
> IF function incompetent wrote...
> >Here is what I am trying to do
[quoted text clipped - 13 lines]
>
> =LOOKUP(J16,{0;1;2;3;4;5},{0;1,5;1.75;2;2.5})