Forum Discussion
Present one column in barcode
hello, is it possible to present one column in barcode and the rest in text format?
the table is a matrix, I tried a new theme in json
{"name":"Custom","textClasses":{"label":{"fontFace":"'Code39AzaleaNarrow2'"}}} but then I have the whole table in barcode
how the table label does not display the code when hovering over the row.
do you have an idea how to present this?
- Anonymous2 years ago
Hi Pablos9999_PL ,
If you want to present one column in barcode and the rest in text format, please using the barcode api instead of report custom theme.- Create a calculated column as shown below:
Barcode API = "http://bwipjs-api.metafloor.com/?bcid=" & "code39&text=" & [BarcodeColumn]- Then set the data category of [Barcode API] as Image URL.
Result:
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Create a calculated column as shown below:
2 Replies
- AnonymousNot applicable
Hi Pablos9999_PL ,
If you want to present one column in barcode and the rest in text format, please using the barcode api instead of report custom theme.- Create a calculated column as shown below:
Barcode API = "http://bwipjs-api.metafloor.com/?bcid=" & "code39&text=" & [BarcodeColumn]- Then set the data category of [Barcode API] as Image URL.
Result:
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Create a calculated column as shown below:
- Pablos9999_PLRegular Visitor
Thank you for your help 😁