Locate macro button

tasander

Board Regular
Joined
Mar 6, 2009
Messages
67
Hi

I want to create a spreadsheet where i can have a macro button embeded in a cell and when the user clicks the button, the cell to the right of the macro button displays some text.

The problem i have is that the button can be placed anywhere on the spreadsheet so i can not hard code the macro to select the correct cell.

I have found that if i make the macro button the exact same size as the cell then when the sheet is changed the button will change with it, this is an okay solution but an ideal one would be to embed a button within a cell.

Can anyone help with the abover or advise a better way to do this?

Many thanks
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Code:
Activesheet.Shapes(Application.Caller).TopLeftCell.Offset(0,1).Value = "blah"
for example.
 
Upvote 0
Brilliant, thanks

Do you have any suggestions for embeding the cell or am i best just making the button the same size as the cell?
 
Upvote 0
You cannot actually embed a button in a cell, so all you can do is fit it to the same size.
 
Upvote 0

Forum statistics

Threads
1,215,561
Messages
6,125,542
Members
449,236
Latest member
Afua

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