Add Barcode to An Analysis
- First Drag a barcode column to an analysis.
- Change the barcode column formula and add an asterisk to the beginning of the barcode and an asterisk to the end of it. You can use the concatenation operator
||
like this:
'*' || "Physical Item Details"."Barcode" || '*'
orCONCAT ('*', CONCAT ("Loan Details"."Barcode",'*' ))
Change Column CSS:
- Click on Results then click on the edit icon.
![]() |
- Click on the gear icon then click on Format Value from the popup menu.
- Expand "Custom CSS Style Options (HTML Only)"
- Check "Use Custom CSS Style" and add the following line:
font-family: 'Libre Barcode 39 Extended Text', cursive;font-size:50px;
- Check "Use Custome CSS Class" and add the following line:
<Head> <link href="https://fonts.googleapis.com/css2?family=Libre+Barcode+39+Extended+Text&display=swap" rel="stylesheet"> <STYLE TYPE="text/css"> .barcode39 { font-family: 'Libre Barcode 39 Extended Text', cursive; font-size: 40px; } </STYLE> </Head>
0 Comments.