calculating

ROKYD

New Member
Joined
Nov 1, 2009
Messages
30
Please, who can provide me a full formula enabling me to calculate the check digit(MOD 10) of the a given number?

PLEASE HELP ME . I NEED THE INFORMATION AS SOON AS POSSIBLE.
IAM RUSHING AND I DO NOT KNOW HOW TO OPERATE?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
ok I WILL CHECK, could you please give me you email or messenger sothat I directly talk with you as soon as I go through?

kindest
 
Upvote 0
You can send me a PM by clicking on my codename but it shouldn't be necessary.
 
Upvote 0
Check Digit 10

Dear Mr. Coderre:

We just trying to use the following formula given by you on this site to calculate a check digit for a 10 digit number:

>>>>> =10-MOD(SUMPRODUCT(--MID(A1,{1,3,5,7,9},1))+SUMPRODUCT(--MID(A1,{2,4,6,8,10},1)*3),10)) <<<<<<

We founded that some times the check digit retirned is 10 while calculated from: 1000000003 or 1000000016 or 1000000029, and so on.

How we correct this ?

Regards,
 
Upvote 0
Re: Check Digit 10

Assuming the check-digit you want in those circumstances is zero...
try this:
=MOD(10-MOD(SUMPRODUCT(--MID(A1,{1,3,5,7,9},1))+SUMPRODUCT(--MID(A1,{2,4,6,8,10},1)*3),10),10)

Also, for reasons I still don't understand, this formula seems to return the correct check-digit:
=A1 - FLOOR(A1 - 1, 9)

Does that help?
 
Upvote 0

Forum statistics

Threads
1,216,105
Messages
6,128,861
Members
449,472
Latest member
ebc9

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