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...