sum=d11+c13 but hide result untill c13 value is entered

  • Thread starter Thread starter New User
  • Start date Start date
Hi
=IF(C13="","",D11+C13)

--
Regards
Roger Govier

New User said:
sum=d11+c13 but hide result untill c13 value is entered



__________ Information from ESET Smart Security, version of virus
signature database 4756 (20100109) __________

The message was checked by ESET Smart Security.

http://www.eset.com

__________ Information from ESET Smart Security, version of virus signature database 4756 (20100109) __________

The message was checked by ESET Smart Security.

http://www.eset.com
 
New User said:
sum=d11+c13 but hide result untill c13 value is entered

=IF(C13="", "", D11+C13)

If you want to wait until both D11 and C13 have values, then:

=IF(COUNT(D11,C13)=2, D11+C13, "")
 
Back
Top