My objective is to compare the home run rate (home runs/games) for teams across the history of baseball. I would like to display this data by using the stock chart "open-high-low-close" plotted against time (year). By using this chart I can display the quartiles of all teams for one year. So, the reader could see how the distribution of home runs have expanded and contracted, and how the median moved over time.
But this is not my problem. I have done much smaller charts like this before, and know how to arrange the data to get a reasonable boxplot (or box and whisker) graph.
My problem is: I am trying to construct a formula that will have a dynamic range so that I don't have to define the individual range for each referenced year. My worksheet looks like this:
Column A: Year
Column B-H: other raw data (including team ID)
Column I: formula for home run rate
The data is sorted by year. So I am hoping to plot my 5 number series in a waterfall (for the chart) either in a new sheet or in columns to the right. So each of the 5 numbers (Min, Q2, Median, Q3, Max) would need to refer to column A (year) for the variable number of teams for that year (i.e.year 1871 is from rows 2 to 10 and year 1945 is from rows 1105 to 1120). Every row has a value.
I am certain that I need to use ADDRESS, but continually get the "#VALUE" error. I am also trying OFFSET, but with such little success I am turning here for help.
I thank you in advance for your time