Dan,
You would need to use the worksheet's calculate event: for row 1 based
on cell A1:
Private Sub Worksheet_Calculate()
If Range("A1").Value = "No" Then Range("A1").EntireRow.Hidden = False
End Sub
Change the first A1 to your cell with the value, and the second to any
cell in the row you want to unhide.
Copy this code, right click on your sheet tab, and select "View Code"
then paste the code in the window that appears.
HTH,
Bernie
MS Excel MVP
Dan Young said:
Am I am able to hide and unhide a row by using an equation in excel?
Bascially I want to have a row hidden until a value in a specific cell
is No. Then I want it to be unhidden.