Show blank cell when not Closed or Open

R

roy.okinawa

I have this formulas in column B: =IF(AH8>0,"Closed","Open")

When I copy this formula down column B into blank rows, Open appears in all
those cells below B8 of column B even though there is no data enter. I want
these cells to remain blank until data is entered to start the new row.
 
K

Kleev

=IF(ISBLANK(A8),"",IF(A8>0,"Closed","Open"))
If you really mean AH8, then change above references from A8 to AH8.
 
R

roy.okinawa

Both responses worked.

Kleev said:
=IF(ISBLANK(A8),"",IF(A8>0,"Closed","Open"))
If you really mean AH8, then change above references from A8 to AH8.
 
Top