How do I change a button size and location on an excel sheet?

link|improve this question

56% accept rate
What kind of button? – Tim Williams Oct 31 '11 at 20:27
The only thing that I found is adding a button. I also found ActiveSheet.Shapes("Button 1") but did not get it to work. – Steven Oct 31 '11 at 20:30
2  
Why was this post down-voted? If you are going to down-vote someone, please explain your reasoning. That's why we're all here: to learn from each other. – PowerUser Oct 31 '11 at 20:52
feedback

2 Answers

up vote 1 down vote accepted

You are almost there with ActiveSheet.Shapes("Button 1")

If you dim a variable as Shape and assign the button to it, you can use intellisence to explore the available properties. From there you will find .Height, .Width, .Left, .Top

Dim btn As Shape
Set btn = ActiveSheet.Shapes("Button 1")
btn.Height = 50
btn.Width = 100
link|improve this answer
feedback

Steven, to learn basic VBA in Excel, I recommend experimenting with the Record Macro option. It's location varies depending on your version of Excel (In 2007, you need to activate the Developer tab in your ribbon).

With this button turned on, use the standard menus to do whatever you wanted to do in the first place (in this case, make a custom sized button). Then stop the recording and look at the auto-generated code you just made.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.