View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Locating 1st blank cell in named range

If one column, try ?

Sub firstblankinnamedrng()
Range("BankAccounts").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?