I need to select a range, I have this code

        LastC = ActiveSheet.UsedRange.Columns
        LastR = ActiveSheet.UsedRange.Rows.Count
        Range("A2:" & LastC & LastR).Select
Basically I need to select a range of cells which could be from A2:someColumnLetter & SomeRow#

Dont think the above code quite works?