Skip to main content
Solved

How to combine and show two user inputs in a barcode in Report Designer?

  • 14 March 2023
  • 2 replies
  • 239 views

I’m designing a custom form where I only need to show the product ID, production date and net weight. I need to show a barcode that shows the product ID and the net weight when the warehouse operators scan it. However, I couldn’t find a way to combine these two and get a working barcode. I’m quite new to this, could someone please tell me how to approach this?

The form I designed lets the user input the net weight manually and the user gets to choose the production date and the product ID from the drop down menu. 

 

P.S.: I’m okay with Code 39 or Code 128, either of those. Also, The h@InventoryID]+n@NetWeight] I set as the value of the barcode was taken from the parameters, and it’s not showing the correct results when scanned, It just shows IID+NW when I scan, instead of the values

 

 

2 replies

Userlevel 7
Badge +9

What if you create a new variable and concat the two existing variables and then use the new variable in your barcode. Also note if you have non string variable like weight (I am guessing) then using ToStr function you need to first convert it and then concat.

Userlevel 2

@aaghaei thank you, i’ll give it a try

Reply