Selecting a variable Range

B

Brett

Hi everyone,

I am having issues selecting a variable range. This is basic but I am
not a heavy user of VBA.

p = Range("startdate").Value
q = Range("enddate").Value


Sheets("Data-Sales w Macro").Select
Range("G29").Offset(0, p).Select

I am attempting to select the range between and including P and Q. P
and Q are drop down boxes. The code above selects the cell from
startdate, but my problem is the rest. Sorry for the easy question.
I appreciate your answers.
 
D

Dave Peterson

Maybe????

p = Range("startdate").Value
q = Range("enddate").Value

Sheets("Data-Sales w Macro").Select
range(Range("G29").Offset(0, p),range("g29").offset(0,q)).select
 
Top