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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Find actual location of Cell in Range 1

Status
Not open for further replies.

jessedh

MIS
Apr 16, 2002
96
US
Hi Everyone (again)

This time I have to find the absolute location in pixars of cell L2 in a set of sheets

The reason why is that I have to paste a form into each sheet and if I don't know its absolute location everything gets messed up.

I am not even sure that this can be done so any help is much appreciated!

Thanks
Jesse
 
The .Top and .Left properties of a Range object provide the placement coordinates relative to the top left corner of the sheet area. This may or may not be good enough for your purpose:
Code:
Sub Test()
  MsgBox "Top=" & [L2].Top & "   Left=" & [L2].Left
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top