ArPharazon
Board Regular
- Joined
- May 3, 2004
- Messages
- 51
- Office Version
- 2016
- 2013
- 2007
- Platform
- Windows
I have a pretty basic need, but I'm not sure ISBLANK is what I want.
I have a column with either blank cells, or dates/times.
I want the preceding column to show a 0 for the blank cells & a 1 for the populated cells.
I've tried this: =IF(D2="blank",0,IF(D2="not blank",1)) to no avail.
I'm not sure if I have the correct terms/nomenclature for the cells n "blank" and "not blank".
I used to use this formula for specific Work Order Statuses, when CLOSE, COMP, etc. were actually in the cells:
=IF(E2="COMP",1,IF(E2="CLOSE",1,IF(E2="APPR",0,IF(E2="INPRG",0,IF(E2="WSCH",0,IF(E2="WMATL",0,IF(E2="WVEND",0,IF(E2="WAPPR",0,IF(E2="WPCOND",0,"")))))))))
I have a column with either blank cells, or dates/times.
I want the preceding column to show a 0 for the blank cells & a 1 for the populated cells.
I've tried this: =IF(D2="blank",0,IF(D2="not blank",1)) to no avail.
I'm not sure if I have the correct terms/nomenclature for the cells n "blank" and "not blank".
I used to use this formula for specific Work Order Statuses, when CLOSE, COMP, etc. were actually in the cells:
=IF(E2="COMP",1,IF(E2="CLOSE",1,IF(E2="APPR",0,IF(E2="INPRG",0,IF(E2="WSCH",0,IF(E2="WMATL",0,IF(E2="WVEND",0,IF(E2="WAPPR",0,IF(E2="WPCOND",0,"")))))))))