Hi all
I am using a dynamic named range (that I learned from GlenUK) to automatically update a graph of data points (see formula below).
The figure I am updating is a calculated percentage, and if there are no figures entered to calculate it, then the cell returns a blank. To explain - the percentage value in the field is calculated by dividing field B by field C, but will only show a result if cell B is populated (e.g. formula for cell A2 is =IF(B2="","",B2/C2).
I know this is complicated but bear with me !
Now the problem arises when, since I am using a named range, technically, even though there may be no value in the cell to plot, it still sees my formula and populates my graph with blank spaces..e.g.
Field..Call value
A2.....84%
A3.....76%
etc..
A10.....90%
A11....=IF(B11="","",B11/C11)
A12....=IF(B12="","",B12/C12).
..etc...
AX.....=IF(BX="","",BX/CX).
My named range formula is:
=OFFSET(INDIRECT("'Sheet1'!$A$2"),0,0,COUNTA('Sheet1'!$A:$A)-1,1)
Does anyone know how to make the named range avoid reading the formulas, or have some other option for getting around this issue!!!!
Thanks,
Owen
I am using a dynamic named range (that I learned from GlenUK) to automatically update a graph of data points (see formula below).
The figure I am updating is a calculated percentage, and if there are no figures entered to calculate it, then the cell returns a blank. To explain - the percentage value in the field is calculated by dividing field B by field C, but will only show a result if cell B is populated (e.g. formula for cell A2 is =IF(B2="","",B2/C2).
I know this is complicated but bear with me !
Now the problem arises when, since I am using a named range, technically, even though there may be no value in the cell to plot, it still sees my formula and populates my graph with blank spaces..e.g.
Field..Call value
A2.....84%
A3.....76%
etc..
A10.....90%
A11....=IF(B11="","",B11/C11)
A12....=IF(B12="","",B12/C12).
..etc...
AX.....=IF(BX="","",BX/CX).
My named range formula is:
=OFFSET(INDIRECT("'Sheet1'!$A$2"),0,0,COUNTA('Sheet1'!$A:$A)-1,1)
Does anyone know how to make the named range avoid reading the formulas, or have some other option for getting around this issue!!!!
Thanks,
Owen