>B1=if(OR(ISBLANK(A1), A1=0), "", some_value)
How about this:
=IF(OR(A1="",A1=0),"",some_value)
Biff
> Say I have this
>
[quoted text clipped - 10 lines]
>
> Similar for A2/B2
Zilla - 22 Feb 2007 15:14 GMT
Duh for me! That was simple enough, thanks!
> >B1=if(OR(ISBLANK(A1), A1=0), "", some_value)
>
[quoted text clipped - 18 lines]
> >
> > Similar for A2/B2
T. Valko - 22 Feb 2007 19:42 GMT
Well, that ISBLANK function is incorrectly named! It should be named
ISEMPTY.
Just about everyone considers a formula blank ="" a blank cell (not an empty
cell) cell but ISBLANK doesn't.
Biff
> Duh for me! That was simple enough, thanks!
>
[quoted text clipped - 20 lines]
>> >
>> > Similar for A2/B2