Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can any one help me with a macro/code that will make the
next empty cell in a named rage become the active cell |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try
Sub findnextblank() Application.Goto [findrng].Find("", after:=ActiveCell) End Sub -- Don Guillett SalesAid Software "Keith Robinson" wrote in message ... Can any one help me with a macro/code that will make the next empty cell in a named rage become the active cell |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
a couple of ways
Range("MyRange").End(xlDown).Offset(1).Activate or Dim c As Range Set c = Range("MyRange").Cells(1) Do Until c.Value = Empty Set c = c.Offset(1) Loop c.Activate Cheers, RADO "Keith Robinson" wrote in message ... Can any one help me with a macro/code that will make the next empty cell in a named rage become the active cell |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If cell not empty, then display from range | Excel Discussion (Misc queries) | |||
Insert selected cell value into next cell in range that is empty | Excel Worksheet Functions | |||
How do i find last not empty cell in a range | Excel Worksheet Functions | |||
Picking up the last non-empty cell in a given range | Excel Discussion (Misc queries) | |||
Grabbing the last Non-empty cell in a range | Excel Discussion (Misc queries) |