To Sum the digits of a result
Posted by Mark Gravelle on November 09, 2001 8:46 AM
I am trying to create a formula to sum the 2 digits of a result to give me a new result.
Purpose: Barcoding Check digit must be a single digit between 1 & 9.
Example: Multiply 9x2 = 18
Add the 2 digits of the result: 1+8 = 9
9 is the value I need.
So far my if statement looks like this:
=IF(D4*D3>9,?,D4)
I need help with the "then do this" part of the formula.