Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I have a problem on hiding a row when the value of a cell changes. The following macro which works if i manualy input a zero value into the cell, but when the cell is a formula and the result is zero, it doesent work anymore. Can anybody please help. Thanks in advance. the code is as follows: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$C$7" Then If Target <= 0 Then Cells(7, 3).EntireRow.Hidden = True Else Cells(7, 3).EntireRow.Hidden = False End If End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automatically Hiding Rows when certain cell value has been selecte | Excel Discussion (Misc queries) | |||
AUtomatically hiding a row when a certain cell is blank | Excel Discussion (Misc queries) | |||
hiding columns automatically | Excel Discussion (Misc queries) | |||
hiding columns automatically | Excel Discussion (Misc queries) | |||
Hiding Cells Automatically | Excel Programming |