numbers derived from @ right function don't add

  • Thread starter Thread starter april
  • Start date Start date
A

april

Column A Column B Column C
numbers =round(a1,0) =right(B1,1)

the numbers in Column C won't add. i keep getting -0-

thanks for your help
 
The RIGHT function returns text, which is ignored by the SUM function. Change
formula in column C to:

=MOD(B1,10)

to return the value of the one's digit.
 
perfect, both solutions solve the problem. thank you. also i didn't know
that @ right functions return text. --
aprilshowers
 

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