Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Address of Range

Status
Not open for further replies.

MadForIt

Programmer
Joined
Aug 12, 2002
Messages
26
Location
GB
Hi

Is it possible to return the address of the upper left cell in a range?

i.e.

Range("B14:F100")

I just need it to return B14

Cheers.
 
Hi,

what you are looking for is
Code:
Range("B14:F100").Cells(1, 1).Address

Nath
 
Thanks Nath thats just what i need.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top