I've looked around at Stackoverflow and other websites, but I haven't found the solution to the following:
I would like to set the data for a chart manually in VBA. I do not want a reference to a worksheet, e.g.
MyChart.SeriesCollection(1).XValues = "=Sheet1!$F$25:$G$25"
What I want is something like:
MyChart.SeriesCollection(1).XValues = {Value1,Value2,Value3,...}
But I have no clue how to set the data this way. Any help is much appreciated!