need help with a formule

  • Thread starter Thread starter sebasjuh
  • Start date Start date
S

sebasjuh

I am working with excel (one of the first time I use excel :D) but
have a problem.

I have this formula:
=SOM(Q8*Instellingen!B16*Instellingen!Q3)

But when you leave the field blank in Q8, you see in the field wher
this formula is a -

How do I change the formula to see nothing in that field???

(i hope you guys understand it a little bit
 
Try something like

=IF(Q8="","",SUM(Q8*Insetllingen!B16*Instellingen!Q3))


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
I tried this code
=IF(Q8="","",SUM(Q8*Instellingen!B16*Instellingen!Q3))

But I get a error and it says that the formula is not good.
:
 
do you have a regional setting that uses the semi colon (;) as the list
separator rather than the comma. If so, it should be:

=IF(Q8="";"";SOM(Q8*Instellingen!B16*Instellingen!Q3))

or just

=IF(Q8="";"";Q8*Instellingen!B16*Instellingen!Q3)
 

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

Back
Top