Thanks tom,
It looks like your code would work, the problem with mine was I was leaving out the object descriptor ".Chart", after the ChartObjects("Chart 1"). and before the ChartTitle. Here is the line from my code that works:
Worksheets("Cond Graphs").ChartObjects("Chart 1").Chart.ChartTitle.Text = "Conductivity"
Then I got fancy, as I wanted the Chart Title to come from the imported data:
' Set Chart Title from appropriate cell on AIO-Cond data import sheet
Dim ChartTitle As String
ChartTitle = Worksheets("AIO-Cond").Range("C2") & Worksheets("AIO-Cond").Range("C3")
Worksheets("Cond Graphs").ChartObjects("Chart 1").Chart.ChartTitle.Text = ChartTitle
Problem Solved!
- Thomas
Bookmarks