I'm using excel to just added to columns. I don't know the values of the
coulmns yet but obviously i know the formula. How do i input the formula
without the result showing as zero before the data has been input.
Bob Umlas - 25 Sep 2006 21:24 GMT
Tools/Options/View; deselect "Zero Values"
> I'm using excel to just added to columns. I don't know the values of the
> coulmns yet but obviously i know the formula. How do i input the formula
> without the result showing as zero before the data has been input.
Don Guillett - 25 Sep 2006 21:24 GMT
=if(a1="","",myformula)

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> I'm using excel to just added to columns. I don't know the values of the
> coulmns yet but obviously i know the formula. How do i input the formula
> without the result showing as zero before the data has been input.
Gord Dibben - 25 Sep 2006 22:36 GMT
David
=IF(AND(A1="",B1=""),"",A1+B1)
Gord Dibben MS Excel MVP
>I'm using excel to just added to columns. I don't know the values of the
>coulmns yet but obviously i know the formula. How do i input the formula
>without the result showing as zero before the data has been input.