nicholasyu
New Member
- Joined
- Jul 16, 2014
- Messages
- 3
Hello Mr.Excel,
I wrote a hide rows VBA on Excel 2013 (see the code below), it is working fine. But when I opened in MAC Excel 2011 the button is not working (it become static buttons). I have the button as "form control"
Private Sub OptionButton_NA_No_Click()
Sheet1.Range("90:120").EntireRow.Hidden = True
Sheet5.Range("2:33").EntireRow.Hidden = True
End Sub
I wrote a hide rows VBA on Excel 2013 (see the code below), it is working fine. But when I opened in MAC Excel 2011 the button is not working (it become static buttons). I have the button as "form control"
Private Sub OptionButton_NA_No_Click()
Sheet1.Range("90:120").EntireRow.Hidden = True
Sheet5.Range("2:33").EntireRow.Hidden = True
End Sub