as that was so easy...

  • Thread starter Thread starter Josie
  • Start date Start date
J

Josie

As you nailed that one so easy...

The macro draws a chart from data on worksheet 1 then
stores the chart as a new sheet. How do you...

Title the chart with a word that is found in cell A9 of
worksheet 1?

Name the sheet that the chart is on with the same word?

I owe you guys big time for this!
 
Sub AAA()
ActiveChart.ChartTitle.Text = "=Sheet1!R9C1"
ActiveChart.Name = Worksheets("Sheet1").Range("A9").Value


End Sub
 
Lawks...
-----Original Message-----
Sub AAA()
ActiveChart.ChartTitle.Text = "=Sheet1!R9C1"
ActiveChart.Name = Worksheets("Sheet1").Range("A9").Value


End Sub


--
Regards,
Tom Ogilvy




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top