I have made a chart within a sheet in Excel. Within the sheet, the chart refers to specific cells in the sheet to display (i.e. cells that contain my data points).
I would like to know how to copy the chart into another sheet within my Excel file, and have the references update to refer to the cell addresses that are within the its new sheet.
Whenever you copy-paste/move a chart into another sheet, the chart will still refer to cells within the original sheet it was made in. This is because anytime you refer to a cell within a chart, it specifically refers to the sheet it was made it (i.e. Instead of saying $T$7:$T$12
, references are made to be SHEET'!$T$7:$T$12
).
In the references within the chart, if I change the reference from SHEET'!$T$7:$T$12
to $T$7:$T$12
(or even T7:T12
), I get a message saying that my formula contains an error.
How can I solve this issue?
Thanks.