B
Bill
Does anyone know if it is possible to use variables as in the following?
Dim myStart, myEnd As Integer
<...>
ActiveCell.Rows("myStart:myEnd").EntireRow.Select
When myStart = 1 and myEnd = 20, I get a type mismatch. I want it to behave
like this:
ActiveCell.Rows("1:20").EntireRow.Select
Thanks
Dim myStart, myEnd As Integer
<...>
ActiveCell.Rows("myStart:myEnd").EntireRow.Select
When myStart = 1 and myEnd = 20, I get a type mismatch. I want it to behave
like this:
ActiveCell.Rows("1:20").EntireRow.Select
Thanks