Align button to Top Right corner of cell

userxyz

New Member
Joined
Feb 18, 2018
Messages
5
I want to align an active x button to the top right corner of cell A1 but not getting it
I can align it to the top let corner with the code below
Is this possible?

Thanks


Code:
[FONT=arial]Sub btnReposition()[/FONT]
[FONT=arial]Dim ws As Worksheet[/FONT]
[FONT=arial]Dim Rng As Range[/FONT]
[FONT=arial]
[/FONT]
[FONT=arial]Set ws = ThisWorkbook.Sheets("Original_<wbr>Data")[/FONT]
[FONT=arial]    [/FONT]
[FONT=arial]    Set Rng = ws.Range("A1")[/FONT]
[FONT=arial]    Columns("A:A").ColumnWidth = 40[/FONT]
[FONT=arial]    With ws.OLEObjects("CommandButton1"<wbr>)[/FONT]
[FONT=arial]        .Top = Rng.Top[/FONT]
[FONT=arial]        .Left = Rng.Left[/FONT]
[FONT=arial]        '.Width = rng.Width[/FONT]
[FONT=arial]        '.Height = rng.RowHeight[/FONT]
[FONT=arial]    End With[/FONT]
[FONT=arial]End Sub[/FONT]
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

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