Thread
:
Locating 1st blank cell in named range
View Single Post
#
2
Posted to microsoft.public.excel.programming
BOBODD
external usenet poster
Posts: 26
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?
Reply With Quote
BOBODD
View Public Profile
Find all posts by BOBODD