last digit

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how would i go about getting the last digit in a number. for example 5326 it
will return 6, 42 will return 2.
i think theres an equation for this too but im not sure
thanks in advance
 
=Right(A1,1) where A1 contains the value


Hth,
Oli
 
Grüezi choice

choice schrieb am 11.02.2005
how would i go about getting the last digit in a number. for example 5326 it
will return 6, 42 will return 2.
i think theres an equation for this too but im not sure

If you have numbers only you can do this mathematically instead of
string-operations:

=MOD(A1;10)




Regards
Thomas Ramel
 

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