Greg Determann
New Member
- Joined
- Jan 18, 2005
- Messages
- 20
This works in Excel 2000, but when a coworker tries to use some checkboxes that I set up, it gives her this:
Run-time error '1004'
Unable to set the HIdden property of the Range class
The code I have is this:
Private Sub CheckBox10_Click()
If CheckBox10.Value = True Then
Sheets("Projections").Range("A25").EntireRow.Hidden = False
Else
Sheets("Projections").Range("A25").EntireRow.Hidden = True
End If
End Sub
Any ideas why this isn't working and how to make it work. I know it is absolutely RIDICULOUS that she has Excel 97, but nothing we can do about it right now. Thanks in advance.
Run-time error '1004'
Unable to set the HIdden property of the Range class
The code I have is this:
Private Sub CheckBox10_Click()
If CheckBox10.Value = True Then
Sheets("Projections").Range("A25").EntireRow.Hidden = False
Else
Sheets("Projections").Range("A25").EntireRow.Hidden = True
End If
End Sub
Any ideas why this isn't working and how to make it work. I know it is absolutely RIDICULOUS that she has Excel 97, but nothing we can do about it right now. Thanks in advance.