why don't you use the short formula:
=E2+IF(B3<=32,(C3="x")*D3/32,-12.5*(MOD(B3,2)=1))
with column B contains number of days (the same in your file) -
instead of depending on row() ?
why don't you use the short formula:
=E2+IF(B3<=32,(C3="x")*D3/32,-12.5*(MOD(B3,2)=1))
with column B contains number of days (the same in your file) -
instead of depending on row() ?
if you want not to rely on "x", the formula will be:
=E2+IF(B3<=32,(MOD(B3,2)=1)*D3/32,-12.5*(MOD(B3,2)=1))
OR
=E2+(MOD(B3,2)=1)*IF(B3<=32,D3/32,-12.5)
with the same number of days in the two stages (1st & 2nd stage)
in the formulas, if also do not rely on the value in cplumn B - you can use Row() replace B3 appropriately
G luck.
Last edited by tigertiger; 06-17-2009 at 02:30 AM.
Thanks for the replies all. They all work, now I just have to figure out how
Appreciate the help
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks