how do i add all digits in a cell with result being less than 10

rufuxinix

New Member
Joined
Jan 23, 2019
Messages
39
Office Version
  1. 2019
Platform
  1. Windows
I need to add all digits in a cell and the result must be less thank 10
Example - 48 = 4+8 = 12 = 1+2 = 3
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
I also was a Math major in college, many years ago.
Me too! Also many years ago (think pre-calculators).

For those who might be interested, VB's Mod operator handles positive and negative numbers "correctly".
Code:
Function Modu(Number As Long, Modulus As Long) As Long
  Modu = 1 + (Number - 1) Mod Modulus
End Function
 
Upvote 0
Me too! Also many years ago (think pre-calculators).
I am a little younger than you. We actually did have calculators, though the fancy graphing calculators were just starting to come out.
I never owned a graphing calculator, but my friend did have one. We used it to play Hangman in Calc 3!;)
 
Upvote 0
I am a little younger than you. We actually did have calculators, though the fancy graphing calculators were just starting to come out.
I'll be about 1/3 of the way through my 70's in a little more than a month. I remember when I started work in 1970 at the place I retired (early) from after more than 32 years on the job, one of my co-workers was a Licensed Surveyor who practiced part-time on weekends. He bought one of (maybe thee) first handheld battery operated calculators. I think it was made by Sharp and I believe its name was ELSIE 8 (or something like that). I had 8 digits (with no guard digits as I recall), only the basic four functions (+-*/), an LED display that could not be read in the sunlight and... get this... no decimal point! It was a "true" replacement for a slide rule. He paid $400 (in 1970 money!) for it and was happy as could be over having purchased it.
 
Upvote 0
I'm also younger than you Rick, I had one of those Scientific Calculator wrist watches made by Casio when I was in College, used it everyday back then. :)
 
Last edited:
Upvote 0
I had 8 digits (with no guard digits as I recall), only the basic four functions (+-*/), an LED display that could not be read in the sunlight and... get this... no decimal point! It was a "true" replacement for a slide rule. He paid $400 (in 1970 money!) for it
It is amazing how far technology has come in such a short time (and it shows no sign of slowing down!).
 
Upvote 0

Forum statistics

Threads
1,223,705
Messages
6,173,989
Members
452,541
Latest member
haasro02

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