Referencing Variable Worksheet names in chart source data

lankybones

New Member
Joined
Aug 9, 2010
Messages
4
Forgive me if I am wrong but I cannot find the answer to my question on other threads so I am going to ask.

Background Info:
Using - Excel 2007 through windows xp
I am accessing a SQL server to retrieve a table of data. I am then using a macro to open a userform in which the user inputs data to filter the table by. When they hit the command button after inputting said data the macro filters the columns by the data input from the user then creates 3 charts from the data after filtering.

The Problem:
The user may want to run this macro more than once per workbook so the worksheets created I have running as a string and variable that counts the number of times the macro runs through a public variable, that puts a number after the string (ex. on first run of macro "sheet 1" is created, on second run of macro "sheet 2" is made). My problem is referencing these variable names in the seriescollection in the creation of the charts. My charts show up blank (no data points).

Code:
intGraphButt*******s - variable for number of times graph button was hit
"Neg.Commit Data " & intGraphButt*******s - variable sheet name

Sheets.Add.Name = "Neg.Commit Data " & intGraphButt*******s (no problems with sheet name being correct)

Charts("Negotiated Commit Dates " & intGraphButt*******s).SeriesCollection(1).XValues = "='Neg.Commit Data & intGraphButt*******s'!$A$2:$A$32000"
(within this line of code is where the problem lays)

Respond with any questions or clarifications i need to make Thanks for your time!
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
If it helps any I know the sheets created by my program are working as expected the only problem is within referencing the sheet so it should be a simple fix for someone out there with more knowledge than me but i just cant get the right syntax.
 
Upvote 0
Ok so another reply to myself sorry for making this repetitive but i think i found a useful piece of information. when i right click on the graph and click select data it says my data range is too complex. I dont know why this is because its just a simple column from another worksheet within the workbook? does this help?
 
Upvote 0
Code:
Charts("Negotiated Commit Dates " & intGraphButt*******s).SeriesCollection(1).XValues = "='Neg.Commit Data & intGraphButt*******s'!$A$2:$A$32000"

The concatenation looks wrong. Should be:
Code:
Charts("Negotiated Commit Dates " & intGraphButt*******s).SeriesCollection(1).XValues = "='Neg.Commit Data" & intGraphButt*******s & "'!$A$2:$A$32000"

Out of habit I would probably go in steps (beware that I might have missed spaces in your sheet names or range addresses - check the exact outcome in strFormula):
Code:
Dim ws As Worksheet
Dim strFormula As String
Set ws = Sheets.Add
ws.Name = "Neg.Commit Data " & X
strFormula = "='Neg.Commit Data" & X & "'!$A$2:$A$32000"
Debug.Print strFormula
Charts("Negotiated Commit Dates " & X).SeriesCollection(1).XValues = strFormula
 
Upvote 0
Worked exactly like I was hoping for thank you so much. Sucks how much simple punctuation can influence a program but i guess thats part of the fun haha. Thanks again for your time and God bless!!!
 
Upvote 0

Forum statistics

Threads
1,216,744
Messages
6,132,470
Members
449,729
Latest member
davelevnt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top