Macro programing in excell

  • Thread starter Thread starter thechad85
  • Start date Start date
T

thechad85

I am trying to creat a excel(2003) sheet that when you click on a button
(yes/no) certin cells will dissapear. hide. and when you click on the other
button they reapear.
I will have several sections that this will apply.

let me know if there are any suggustions
 
How about using the SAME button
Sub togglehiderows()
Rows("2:4").Hidden = Not Rows("2:4").Hidden
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top