Description: Need function to handle check digit calculation. Actual Results: Expected Results: Reproducible: Always User Profile Reset: No Additional Info: Found a formula on the net. and while usable, it is clunky to use. (would require editing cell references to use in in other cells. e.g. =MOD(10-MOD((SUM(RIGHT(A1,1) + MID(A1,9,1) + MID(A1,7,1) + MID(A1,5,1) + MID(A1,3,1) + LEFT(A1,1))*3 + SUM(MID(A1,10,1) + MID(A1,8,1) + MID(A1,6,1) + MID(A1,4,1) + MID(A1, 2, 1))), 10),10) A built in function that would simplify use would be greatly appreciated.
@Eike, @Winfried, what your opinion here ?
(In reply to Xisco Faulí from comment #1) > @Eike, @Winfried, what your opinion here ? IMHO creating and using a macro would be the best solution. This seems a very specific use case, of which there are lots of similar situations (without possibilities to combine them in a simple, user friendly function), each with a very limited use. I have made several barcode generator applications/scripts/macro's, and each had its own check mechanism.
Yeah right, there are dozens of barcodes, nothing for core; a user function / macro / extension is better suited.