Good morning, I have worksheets with charts that reference data from other worksheets and I want to, effectively, copy and Paste As Values so I can then delete the source worksheets. I've had a look and can't figure out how to do it.
After recording a macro I tried this but it didn't do what it did when I was recording it and just appears to duplicate what's already there.
Any ideas please?
Many thanks,
D€$
After recording a macro I tried this but it didn't do what it did when I was recording it and just appears to duplicate what's already there.
Code:
For Each Chart In ActiveSheet.ChartObjects
Chart.Activate
ActiveChart.PlotArea.Select
ActiveChart.Paste
Next Chart
Any ideas please?
Many thanks,
D€$