S
Steve
I am trying to plot a graph in VBA using a selected range.
However I only want the range to incorporate column A and D, which will
expand over time.
How Can I express the following so that the range updates dynamically when
new rows are entered?
Range("A1:A23,D123").Select
Tried this, but does not work at all:
Range(Range("A1").End(xlDown), Range("D1").End(xlDown)).Select
Thank you.
However I only want the range to incorporate column A and D, which will
expand over time.
How Can I express the following so that the range updates dynamically when
new rows are entered?
Range("A1:A23,D123").Select
Tried this, but does not work at all:
Range(Range("A1").End(xlDown), Range("D1").End(xlDown)).Select
Thank you.