Selecting a range of cells , how to ?

  • Thread starter Thread starter Luc
  • Start date Start date
L

Luc

Hello,

I have a problem with selecting cells.

The selection allways goes from column A to M.
The number of rows starts allways from A 11, to the LAST CELL in column A
which contains a number
So the column range is fix, and the row range is variable.

For example :
It can be A11 to M24
or A11 to M5
or A11 to M11 (this is only 1 row)

What code should i use in the macro ?

Thanxx

Luc
 
Sub ordinate()
n = Cells(Rows.Count, "A").End(xlUp).Row
Set r = Range(Cells(11, "A"), Cells(n, "M"))
r.Select
End Sub
 
Back
Top