Hide the answer to an equation until all values are inputed

A

Anna

I am trying to hide the answer to my equation until all the values have been
put into the spreadsheet.

Anyone know how to do this?
 
S

Stefi

Say input cells are A1, A2, etc. then
=IF(OR(ISBLANK(A1),ISBLANK(A2), etc.),"",yourformula)

Regards,
Stefi

„Anna†ezt írta:
 
S

Stefi

Smarter if precedents are in a contiguous range!
Stefi


„Max†ezt írta:
 
S

Stefi

Yes, that's true. Another idea for Anna to make still simpler the formula:
create a named range consisting of precedent cells, say "precedents", in this
case the formula:
=IF(COUNTA(precedents)<6,"",<formula>)

Stefi

„Max†ezt írta:
 
Top