|
Print Data Matrix Barcode In Crystal Reports
Data Matrix is a kind of 2D barcode that is able to encode more than 1000 alphanumeric characters.
If you are using Crystal Reports 9 or above, please open BCSDataMatrix.rpt from
C:\Program Files\Barcodesoft\datamatrixFont folder.
Crystal Reports has a string length limitation of 255 characters for formula field.
Therefore we have to split Data Matrix codewords into seperate parts, and concatenate them in a Text Object before apply font BCSDataMatrix.
Create formula field look like this as shown below

Create more formula fields as listed below if you have lots of data to encode.
BCSDataMatrixEncode({Test.Data}, '1')
BCSDataMatrixEncode({Test.Data}, '2')
BCSDataMatrixEncode({Test.Data}, '3')

For more information about Data Matrix barcode, please click Data Matrix.
|