Changing Button Text in Excel 2007

ElvisSteel

Board Regular
Joined
Mar 23, 2009
Messages
122
I have a macro button that shows/hides a table of data (using conditional formatting in the table itself).
I want to change the text accordingly from "Show Data" to "Hide Data" each time the button is pressed.

I have code that does this by selecting the required sheet, then changing the text using
ActiveSheet.Shapes("Button").Select
Selection.Characters.Text = "Show Data" etc.

All OK at this point, but when I first open the sheet, I want to check if the data is shown, and set the button text accordingly, but I am having trouble getting this to work without having to first select the sheet.
i.e. somthing along the lines of...

Sheets("SheetName").Shapes("Button").Text etc etc

but I cannot get the properties/method right

Can anyone help please

Thanks
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
If your button is from the Forms Toolbar:

Code:
Worksheets("SheetName").Shapes("Button").TextFrame.Characters.Text = "Whatever"
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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