View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Baggins Baggins is offline
external usenet poster
 
Posts: 5
Default Hide rows that contain radio buttons

I am trying to produce a form that if a user selects a "Yes" radio button,
additional questions appear with theire own radio buttons for a response.

I have managed to show/hide the additional questions by running a little
piece of VBA attached to the 1st radio buttons

Rows("22:34").Select
Selection.EntireRow.Hidden = False '(or True to hide them if no is
selected)

This works fine and the additional rows will disappear as planned.
Unfortunately it does not hid the additional radio buttons contained in those
rows.

Any ideas how to do this?