A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
A valiant effort but try it like this. NOTE. It is extremely unlikely that you actually need to select the range to do what you want.
Sub somesub()
Dim Stuff As Long
Stuff = Cells(Cells.Rows.Count, "C").End(xlUp).Row
Range("C10:C" & Stuff).Select
End Sub