I need to identify the last digit in a test integer.

I presently am about to convert the integer to a string, use Right(TestInteger,1) to extract the last character, then convert that character back to a value. Seems to me I, once again, am probably missing some other painfully obvious and easier means.

Any ideas?