• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula to add large numbers = single digit numbers

The math I am using is like this below

1099 = 1 + 9 + 9 = 1

1 + 9 = 10 + 9 = 19

19 is 1 + 9 = 10 and

10 = 1 + 0 = 1

What formula could I use if I have two columns with numbers and I want to produce two more columns with their whole number (single digit). For example

1079 1056 = 8 3
 

Attachments

  • Total Count.xlsx
    10.2 KB · Views: 9
@pecoflyer

Hi Mate,

Just a minor correction in your approach.. Mod(9,9) results to 0...try your formula on 1134
So I would rather put a check to see if the sum is 9...this is how my formula would look like if i use your approach..

IF(MOD(A1,9)=0,9,MOD(A1,9))

Regards
Asheesh
 
The math I am using is like this below

1099 = 1 + 9 + 9 = 1

1 + 9 = 10 + 9 = 19

19 is 1 + 9 = 10 and

10 = 1 + 0 = 1

What formula could I use if I have two columns with numbers and I want to produce two more columns with their whole number (single digit). For example

1079 1056 = 8 3
Try this

=1+MOD(A1-1,9)
 
@pecoflyer

Hi Mate,

Just a minor correction in your approach.. Mod(9,9) results to 0...try your formula on 1134
So I would rather put a check to see if the sum is 9...this is how my formula would look like if i use your approach..

IF(MOD(A1,9)=0,9,MOD(A1,9))

Regards
Asheesh

results are all 9
 
Back
Top