This is probably easy but i just cant seem to write this correctly. I am trying to select a range of rows in Excel but i want to select it by using a variable.
Standard way:
Rows("2:12").EntireRow.Select
What I want to do:
Where IntStartRow = 2 & IntEndRow = 12
Rows( ? IntStartRow : IntEndRow ?).EntireRow.Select
Standard way:
Rows("2:12").EntireRow.Select
What I want to do:
Where IntStartRow = 2 & IntEndRow = 12
Rows( ? IntStartRow : IntEndRow ?).EntireRow.Select