Hi Everyone
I have inserted a vba code to have the rows 17 to 25 hidden but it seems that row 25 was not hidden. Not sure what is the issue here..
I have inserted a vba code to have the rows 17 to 25 hidden but it seems that row 25 was not hidden. Not sure what is the issue here..
VBA Code:
If Range("C16") = "Malaysia" Then
If Range("C7") = "Yes" Or Range("C7") = "No" Then
Rows("17:25").EntireRow.Hidden = True
Else
Rows("17:25").EntireRow.Hidden = False
End If
End If