K
Keith R
I started with a large range (1x300 cells) that represented 3 sections of
data that is graphed- but I've since found out that my (internal) customer
sometimes needs to suppress one or two of the sections, so the graph doesn't
show large empty sections when there is no data.
I'm having trouble with the named range(s);
Instead of
NamedRange1 = MySheet!A1:A30
I now have
NamedRange1a = MySheet!A1:A100
NamedRange1b = MySheet!A101:A200
NamedRange1c = MySheet!A201:A300
Now I need a statement that puts all three of these together into one range
to feed to the graph, like: (watch for wrap)
NamedRange1Total =
MyWorkbook.xls!NamedRange1a,MyWorkbook.xls!NamedRange1b,MyWorkbook.xls!Named
Range1c
but that doesn't seem to be working- Help!
(after I get the ranges "merged", I can put in if/then logic to control
whether or not each range is added....)
Many, many thanks in advance!
Keith
data that is graphed- but I've since found out that my (internal) customer
sometimes needs to suppress one or two of the sections, so the graph doesn't
show large empty sections when there is no data.
I'm having trouble with the named range(s);
Instead of
NamedRange1 = MySheet!A1:A30
I now have
NamedRange1a = MySheet!A1:A100
NamedRange1b = MySheet!A101:A200
NamedRange1c = MySheet!A201:A300
Now I need a statement that puts all three of these together into one range
to feed to the graph, like: (watch for wrap)
NamedRange1Total =
MyWorkbook.xls!NamedRange1a,MyWorkbook.xls!NamedRange1b,MyWorkbook.xls!Named
Range1c
but that doesn't seem to be working- Help!
(after I get the ranges "merged", I can put in if/then logic to control
whether or not each range is added....)
Many, many thanks in advance!
Keith