How do I display an empty cell and calculate on it

D

Dave

I am using a reference on one sheet to fill the values in another. If a cell
has not value it I want it to be blank. But I also what it to be used in a
calculation when it is populated.

I have tried nothing, but it enters a 0, I have tried
=IF(Data!C2>0,Data!C2,""), =IF(Data!C2>0,Data!C2,null),
=IF(Data!C2>0,Data!C2,isnull) but each has it's own problems.

Is there a way to make a cell empty and calculate on it while referencing
another sheet?

Thanks

Dave
 
F

Fred Smith

The standard way is as follows:
=if(data!c2="","",yourcalculation here).

If you need more help, tell us what "problems" you are having, and the
solution you are looking for.

Regards,
Fred
 

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