Heres my code, but its not really doing anything, I dont see anything wrong with it:
Private Sub PG1(ByVal Target As Range)
If .Range("E50").Value = "Passed" Then
Rows("51").EntireRow.Hidden = True
End If
ElseIf Range("E50").Value = "Failed" Then
Rows("51").EntireRow.Hidden = True
End If
End Sub
My intention is that when that specific cell in the previous row is set to "Passed" from the dropdown, then the below row would appear, if its a 'Failed" then it'll be hidden instead.