I'm writing a formula in Excel 2003, and it's quite complex and hard to understand so I want to use named ranges instead.
I have named a range of cells "Totals", which is a column of 6 values from K7 to K12.
I'm writing a formula in cell F7 which checks if a total exists in the previous row, i.e. it checks if there is a value in cell K6.
At the moment I use: =IF(K6="", "Value found", "Nothing found") , but as I said I want to use named ranges to make it more readable.
I know that if I changed the formal in F7 to: =IF(Totals="", "Value found", "Nothing found") , then this will check cell K7 but I really need to check the cell above (K6).
So how can I get it to check one row up (cell K6) using a reference to the named range (Totals)? Is there some way I can get it to check one row up relatively?
Thanks,
May
I have named a range of cells "Totals", which is a column of 6 values from K7 to K12.
I'm writing a formula in cell F7 which checks if a total exists in the previous row, i.e. it checks if there is a value in cell K6.
At the moment I use: =IF(K6="", "Value found", "Nothing found") , but as I said I want to use named ranges to make it more readable.
I know that if I changed the formal in F7 to: =IF(Totals="", "Value found", "Nothing found") , then this will check cell K7 but I really need to check the cell above (K6).
So how can I get it to check one row up (cell K6) using a reference to the named range (Totals)? Is there some way I can get it to check one row up relatively?
Thanks,
May