C
CLI-Art
Is there a mod43 check digit calculator in Excel. If not, has anyone out
there made one?
there made one?
First off, since you will probably want to copy the formula down the column,
I left off a couple of needed absolute references. Use this formula instead
of the one I posted originally...
=MOD(SUMPRODUCT(SEARCH(MID(A1,ROW($1:$99),1),"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-.$/+%")
)-99,43)
My formula assumes your text is in A1... you would put the above formula in
any other column (in most likely in row 1 of that column to keep the text
and the MOD43 number in sync). If you have more text under A1 that you want
the MOD43 number for, then just copy my formula down through those rows. If
your text strings are in a different column, then change the A1 reference in
my formula to the first cell in the column the text is in. For example, if
your first text string is in E3, then the above formula would become this...
=MOD(SUMPRODUCT(SEARCH(MID(F3,ROW($1:$99),1),"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-.$/+%")
)-99,43)
which you might place in, say, F3.