How to format that cell display only one digit of a number at a time?

soniachong

New Member
Joined
Jul 1, 2011
Messages
0
For example, I put the 1 9 (two columns) and did a sum on it and I want it to calculate 10 in two separate column like so:-

1 9 = 1 0 = 1
or
6 7 = 1 3 = 4


I know summing it will give it 10 or 13 but I want to further reduced the number so I need it to display only 1 digit per column.

Help? :(

Thanks
Sonia
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try: =SUM(LEFT(SUM(A2:B2)*0.1),RIGHT(SUM(A2:B2),1))
 
Upvote 0
If you just want the final single digit, use:-
Code:
=MOD(A1+B1,9)
(assuming your numbers are in A1 and B1)
 
Upvote 0

Forum statistics

Threads
1,224,582
Messages
6,179,670
Members
452,936
Latest member
anamikabhargaw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top