How to stop cells with no data entered, from showing the formulas

D

Dave

How do I stop cells with no data entered, from showing the formulas as it
looks untidy. Can I have the cells clear until I input the figures?
Many thanks,
Dave
 
G

Gary''s Student

Say we start with =A1+A2
We want the answer to look clear until BOTH A1 and A2 are entered. Use this
type of form:

=IF(OR(A1="",A2=""),"",A1+A2)
 
D

Dave

Hi and thanks for replying.
I am new to this and would appreciate your help.
The 3 formula's I am using are:
=D2/(C2*0.2199692483)
=C2/(D2*1.609344)*100
=I2/C2
I don't want to appear cheeky but, could you please let me know what they
need to be?
Thanks again,
Dave
 
M

Mike H

Try these three

=IF(C2="","",D2/(C2*0.2199692483))
=IF(D2="","",C2/(D2*1.609344)*100)
=IF(C2="","",I2/C2)

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top