ThrottleWorks
Excel Ninja
Hi,
Could somebody please help me in the below code
I have a value in cell G7, the value is number between 1 to 10.
I have allready hidden rows 11 to 23.
I want to unhide 11 to 23 based on the value in cell G7.
for example G7 cell has value 5 then rows 11 to 16 will get unhide.
Can someone help me in this please.
I am using following code at prsent.
Sub UnHideSubmitButton()
'unhide submit button
Worksheets("view").Select
Rows("23:25").Select
Selection.EntireRow.Hidden = False
MyTblVl = Range("g7")
i = MyTblVl
Rows("11:i").Select
Selection.EntireRow.Hidden = False
End Sub
Could somebody please help me in the below code
I have a value in cell G7, the value is number between 1 to 10.
I have allready hidden rows 11 to 23.
I want to unhide 11 to 23 based on the value in cell G7.
for example G7 cell has value 5 then rows 11 to 16 will get unhide.
Can someone help me in this please.
I am using following code at prsent.
Sub UnHideSubmitButton()
'unhide submit button
Worksheets("view").Select
Rows("23:25").Select
Selection.EntireRow.Hidden = False
MyTblVl = Range("g7")
i = MyTblVl
Rows("11:i").Select
Selection.EntireRow.Hidden = False
End Sub