View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Vergel Adriano Vergel Adriano is offline
external usenet poster
 
Posts: 857
Default Macros and buttons

Sandy,

Here's an example with 2 buttons (Button 1 and Button 2). Clicking one
button hides itself and shows the other.


Sub Button1_Click()
ActiveSheet.Shapes("Button 1").Visible = False
ActiveSheet.Shapes("Button 2").Visible = True
End Sub

Sub Button2_Click()
ActiveSheet.Shapes("Button 1").Visible = True
ActiveSheet.Shapes("Button 2").Visible = False
End Sub


--
Hope that helps.

Vergel Adriano


"Sandy" wrote:

Hi

I have 2 macros A and B say and two buttons Cand D on a worksheet. Can I
have button C run Macro A and then at the end of the code make C invisisble
and D visible. Then have button D run Macro B and at the end of the code
make C visible and D invisible - am I making myself clear?
The buttons were placed on the sheet from the form toolbar.

Sandy