I am trying to create a chart from a multiple range. I want the multiple range to be contained in one series, but I must be missing something. Each column in the range is being interpreted as a new series. I have tried two ways of making the range from multiple columns.
1. xlWsheet.Range("A8:A19,C8:C19,E8:E19"
2. myRange = Union(r1,r2)
xlWsheet.Range(myRange)
VB thinks that there are 3 series. One for A,C, and E. I just want one series with the data from all three. Has anyone else had this problem or does anyone know how I can solve this problem?
Any help is appreciated.
Chris
1. xlWsheet.Range("A8:A19,C8:C19,E8:E19"
2. myRange = Union(r1,r2)
xlWsheet.Range(myRange)
VB thinks that there are 3 series. One for A,C, and E. I just want one series with the data from all three. Has anyone else had this problem or does anyone know how I can solve this problem?
Any help is appreciated.
Chris