How would I Dim the name of the current sheet, obviously Sheet1 is not
my sheet name
ActiveChart.SeriesCollection(1).XValues = "=Sheet1!R4C1:R14C1"
Thanks in advance
-mike
Leith Ross - 19 Jan 2006 21:14 GMT
Hello Mike,
If by current you mean the active worksheet then...
ActiveChart.SeriesCollection(1).XValues = "=" & ActiveSheet.Name
"!R4C1:R14C1"
Sincerely,
Leith Ros