If the groupbox contains 2 optionbuttons (yes & No) you'd better use a checkbox:

[VBA]private sub checkbox1_change()
Rows("35:68").EntireRow.Hidden = checkbox1.value
end sub[/VBA]