Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
Some functions allow specifying the range the following way: Range("A1:A10") How to include the last (max) row in that instead of A10? Thanks, Fred |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub RangeROver()
Dim r As Range Set r = Range("A1:A" & Cells(Rows.Count, "A").End(xlUp).Row) End Sub -- Gary''s Student - gsnu200856 "fred" wrote: Hello, Some functions allow specifying the range the following way: Range("A1:A10") How to include the last (max) row in that instead of A10? Thanks, Fred |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reaching Max | Excel Discussion (Misc queries) | |||
Reaching Max | Excel Discussion (Misc queries) | |||
Reaching Max | Excel Discussion (Misc queries) | |||
Making tab do a CRLF when reaching end of a range | Excel Discussion (Misc queries) | |||
Stay in Combobox when reaching end | Excel Programming |