Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to test the results of a formula to see if it is zero (or null) and
then hide the row if it is. Can someone show me the best way to do that? Below is what I am trying... If ActiveCell.Value <= 0 Then Selection.EntireRow.Hidden = True End If Thanks and best regards, Jeff |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub test()
If ActiveCell.Value <= 0 Or ActiveCell.Value = "" Then Selection.EntireRow.Hidden = True End If End Sub Gord Dibben MS Excel MVP On Mon, 16 Apr 2007 14:23:49 -0700, "JEFF" wrote: I want to test the results of a formula to see if it is zero (or null) and then hide the row if it is. Can someone show me the best way to do that? Below is what I am trying... If ActiveCell.Value <= 0 Then Selection.EntireRow.Hidden = True End If Thanks and best regards, Jeff |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
can you wrap formula results via a formula eg. Alt Enter | Excel Discussion (Misc queries) | |||
Testing for existence of a formula | Excel Worksheet Functions | |||
How do I view formula results intead of formula in excel? | Excel Worksheet Functions | |||
View formula results instead of formula in 2003 version? | Excel Discussion (Misc queries) | |||
Evaluating results of a concatenate formula, as a formula | Excel Worksheet Functions |