Display Position Co-Ordinates of Userform

michaeldh

Board Regular
Joined
Jun 11, 2002
Messages
201
Hi,

Hoping you could assist me with the following:

Macro to display the position co-ordinates of a userform as and when user moves it in real time...the co-ordinates can be displayed on worksheet.

ie Postion from top and position from left etc

Thanks.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try this:
Code:
Private Sub UserForm_Layout()
    Sheets("Sheet1").Range("A1").Value = UserForm1.Left
    Sheets("Sheet1").Range("B1").Value = UserForm1.Top
End Sub
 
Upvote 0
Hi,

Are you able to suggest how I can display Top and Left as the userform is moved on a live basis...want to see the co-ordinates changing live as the form moves on the screen.

Thanks.
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,286
Members
452,902
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top