View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
BOBODD BOBODD is offline
external usenet poster
 
Posts: 26
Default Locating 1st blank cell in named range

Wow! Thanks guys, that's a fair amount of info to go on with.

"Don Guillett" wrote:

or to look in the first column

Sub dd()
Range("BankAccounts").Columns(1).Find("").Select
End Sub

--
Don Guillett
SalesAid Software

"BOBODD" wrote in message
...
I have a named range "BankAccounts" which is A12:A52. This range fills from
A12 down. I'm using

Range("BankAccounts").End(xlUp).Offset(1, 0).Select

To try to find the first blank cell, but this is returning A1. What have
I
missed?