sum cells IF no text present

  • Thread starter Thread starter LLM
  • Start date Start date
L

LLM

Hello,

I am a novice excel user and I am trying to sum cells, some of which
have numbers and text, others that have only numbers. I have to add,
for example: 0.2U, 0.3, 0.1U. Or 0.4U, 0.5U. I need to add only the
cells that do not contain text. The first example should return a sum
of 0.3, the second should return 0. Any suggestions?
LLM
 
Use SUM, it ignores text so

=SUM(A1:A5) will sum any numeric values in the range A1:A5, e.g. 0.3
but ignore text entries e.g. 0.1U

If you have a non-contiguous range then you can use something like

=SUM(A1,A3,A5)
 

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