Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, I get the above message on the following line, Im clearly doing
something wrong: Range("A & (cells(1,1).End(xlDown).Row + 1):aj50").Select |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("A" & cells(1,1).End(xlDown).Row + 1 & ":aj50").Select
-- Regards, Tom Ogilvy "teresa" wrote in message ... Hi, I get the above message on the following line, Im clearly doing something wrong: Range("A & (cells(1,1).End(xlDown).Row + 1):aj50").Select |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try:
Range("A" & Cells(1, 1).End(xlDown).Row + 1 & ":AJ50").Select or, alternatively Range(Cells(1, 1).End(xlDown).Offset(1, 0), Cells(50, 36)).Select or Range(Range("A1").End(xlDown)(2, 1), Range("AJ50")).Select In article , teresa wrote: Hi, I get the above message on the following line, Im clearly doing something wrong: Range("A & (cells(1,1).End(xlDown).Row + 1):aj50").Select |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Run-time error '50290': Application-defined or object-defined erro | Excel Discussion (Misc queries) | |||
Application-defined or object-defined error on copy | Excel Programming | |||
Application-defined or object-defined error - missing the basics | Excel Programming | |||
Macro Run-time Error 1004 Application Defined or Object Defined Error | Excel Programming |