|
|
Automatic Charting In Excel 2000 Let's assume you're working in Sheet1 with column headings in row 1 and days in column A. Data relating to each date is in column B. Using Insert | Name | Define, type each name in the Names in workbook area, and then type the corresponding formula in the Refers to area. Click Add and type in: Days=OFFSET(Sheet1!$A$2,0,0, COUNTA(Sheet1!$A:$A)-1) PlotData=OFFSET(Sheet1!$B$2,0,0, COUNTA(Sheet1!$B:$B)-1) Click on the series in your chart so the =SERIES formula appears in the formula bar. Edit the second and third arguments in the formula, replacing the reference to the column A range with the range name Days and the reference to the column B range with the range name PlotData. The result should be something like this: =SERIES(Sheet1!$B$1,Book1! Days,Book1!PlotData,1)
|