I am trying to create a dynamic named range (actually a series of them) and have a summary table above them for easy viewing. For example my data starts in row 13 and my summary table goes from rows 4:10. My data goes from O13:O35 and is named "Variable1" my named range is defined as:
Variable1=OFFSET(Data1!$O$13,0,0,COUNTA(Data1!$O:$O),1)
In O4 I have the formula =min(Variable1) and in O5 I have =max(Variable1). The error I am getting is a circular reference, although I thought I was telling my range to start at O13 and go down as long as there is something in the cells.
Does anyone have a better formula for creating a dynamic range that won't give me a circular reference?
Variable1=OFFSET(Data1!$O$13,0,0,COUNTA(Data1!$O:$O),1)
In O4 I have the formula =min(Variable1) and in O5 I have =max(Variable1). The error I am getting is a circular reference, although I thought I was telling my range to start at O13 and go down as long as there is something in the cells.
Does anyone have a better formula for creating a dynamic range that won't give me a circular reference?