R
RoR
For each month a number is entered, until it is entered the value for each month is zero.
I am trying to pull the latest number greater than zero from the list.
Currently I use two nested IF arguments such as:
IF(jan>0, jan, if(feb>0, feb, (if mar>0, mar, etc. I'm using two to avoid the limit of
nesting logical arguments within logical arguments to 7.
Each result reports to a cell with its result, I then do a similar calculation to get the
number I really need.
Clumsy, but effective. I, however, need a method to get the latest number without using
the extra cells, and would like to get it in a more elegant manner. Any suggestions?
It's been a very long time since I've written spreadsheets (early 1-2-3, and visicalc,
yeah, that long) and I feel that there must be something I'm missing.
Thanks in advance.
I am trying to pull the latest number greater than zero from the list.
Currently I use two nested IF arguments such as:
IF(jan>0, jan, if(feb>0, feb, (if mar>0, mar, etc. I'm using two to avoid the limit of
nesting logical arguments within logical arguments to 7.
Each result reports to a cell with its result, I then do a similar calculation to get the
number I really need.
Clumsy, but effective. I, however, need a method to get the latest number without using
the extra cells, and would like to get it in a more elegant manner. Any suggestions?
It's been a very long time since I've written spreadsheets (early 1-2-3, and visicalc,
yeah, that long) and I feel that there must be something I'm missing.
Thanks in advance.