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

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,853
Members
449,194
Latest member
HellScout

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