+ Reply to Thread
Results 1 to 2 of 2

EAN 8 check digit formula?

Hybrid View

unclejemima EAN 8 check digit formula? 04-26-2017, 03:46 PM
scottiex Re: EAN 8 check digit formula? 04-28-2017, 11:18 PM
  1. #1
    Forum Contributor
    Join Date
    02-26-2009
    Location
    Canada
    MS-Off Ver
    Excel 2013
    Posts
    209

    EAN 8 check digit formula?

    I can find boat loads of EAN 13 check digit calculators but no EAN 8...can anyone help me out with one?

    Found this one...=MOD(-SUM(MID(A1&0,{1,3,5,7;2,4,6,8},1)*{3;1}),10)

    Found out its a 8 digit code, with check digit so not EAN 8. EAN 8 only has 7 digits with 1 check digit.

    Does anyone have a formula for 8 digit with 1 check digit (total 9)


    Thanks!
    Last edited by JBeaucaire; 04-27-2017 at 11:58 AM.

  2. #2
    Forum Expert
    Join Date
    04-01-2013
    Location
    East Auckland
    MS-Off Ver
    Excel 365
    Posts
    1,347

    Re: EAN 8 check digit formula?

    See if this helps

    http://www.vbforums.com/showthread.p...=1#post3210120

    Private Function EAN8_Checksum(ByVal EAN8_Barcode As String) As String
            'http://www.barcodeisland.com/ean8.phtml
    
            Dim ChecksumCalculation As Integer = 0
    
            Dim Position As Int32 = 1
            For i As Integer = EAN8_Barcode.Length - 1 To 0 Step -1
                If Position Mod 2 = 1 Then
                    'odd position
                    ChecksumCalculation += Convert.ToInt32(EAN8_Barcode.Substring(i, 1)) * 3
                Else
                    'even position
                    ChecksumCalculation += Convert.ToInt32(EAN8_Barcode.Substring(i, 1)) * 1
                End If
                Position += 1
            Next
    
            Dim Checksum As Integer = 10 - (ChecksumCalculation Mod 10)
    
            Return Convert.ToString(Checksum)
        End Function
    If you want something done right... find a forum and ask an online expert.

    Time flies like an arrow. Fruit flies like a banana.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Can't find if formula for 10 digit check
    By coolvibeguy in forum Excel General
    Replies: 3
    Last Post: 04-25-2017, 05:18 PM
  2. Excell Check Digit Formula
    By Ian in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-06-2005, 09:05 PM
  3. Excell Check Digit Formula
    By tnelson in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 06:05 PM
  4. [SOLVED] Excell Check Digit Formula
    By tnelson in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 10:05 AM
  5. Excell Check Digit Formula
    By tnelson in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 07:05 AM
  6. Excell Check Digit Formula
    By tnelson in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM
  7. Excell Check Digit Formula
    By tnelson in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-28-2005, 07:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1