I'm trying to select a range to begin with the active cell and go to the last row of column Q. Following is what I have so far and it works; however, the active cell will not always be cell "I9".
Dim LastRow As Long
LastRow = [A65536].End(xlUp).Row
Range("I9", Cells(LastRow, 17)).Select...