Adding results from a If formula-Short in time

  • Thread starter Thread starter Diana
  • Start date Start date
D

Diana

how do I add the results of if formulas =if(I3="YES","5", IF(I3="NO", "0")).
or how can I convert the results of this if formula to a number and later add
it at the end of the row.


thank you
 
For real numbers, do not wrap within double quotes

Try it like this, in say J3, copied down:
=IF(I3="YES",5,IF(I3="NO",0,""))

Then you can sum it easily using SUM
Eg in say, J11: =SUM(J3:J10)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,500 Files:358 Subscribers:55
xdemechanik
 

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