Skip to main content
Solved

Concatenate Barcode

  • July 24, 2023
  • 1 reply
  • 116 views

Forum|alt.badge.img+1

Has anyone tried to concatenate a barcode for the Scan Move form?  For example, I would like to concatenate Production Nbr & Operation & Quantity into one bar code.  I attempted to modify the Production Ticket with Barcode and attemped these codes for starters: 

=[AMProdItem.ProdOrdID]+'<CR>'+[AMProdOper.OperationCD]

=[AMProdItem.ProdOrdID]+'Chr(13)'+[AMProdOper.OperationCD]

=[AMProdItem.ProdOrdID]+'Chr(19)'+[AMProdOper.OperationCD]

=[AMProdItem.ProdOrdID]+’\n’+[AMProdOper.OperationCD]

=[AMProdItem.ProdOrdID]+’\r’+’\n’+[AMProdOper.OperationCD]

 

I obviously don’t know what I’m doing trying to code the carriage return / pause/break / line feed to make it work with the Scan Move form.  The codes above do combine it into one barcode, but the issue is whether I can code something into the barcode that pauses for a second while the Scan Move form moves on to the next prompt.

 

Best answer by darylbowman

Just here to point out that these two lines 

=[AMProdItem.ProdOrdID]+’\n’+[AMProdOper.OperationCD]

=[AMProdItem.ProdOrdID]+’\r’+’\n’+[AMProdOper.OperationCD]

use the 

instead of 

'

I can’t speak to your use case, but I would suggest trying this format:

=Concat([AMProdItem.ProdOrdID],'\r\n',[AMProdOper.OperationCD])

 

View original
Did this topic help you find an answer to your question?

1 reply

darylbowman
Captain II
Forum|alt.badge.img+13

Just here to point out that these two lines 

=[AMProdItem.ProdOrdID]+’\n’+[AMProdOper.OperationCD]

=[AMProdItem.ProdOrdID]+’\r’+’\n’+[AMProdOper.OperationCD]

use the 

instead of 

'

I can’t speak to your use case, but I would suggest trying this format:

=Concat([AMProdItem.ProdOrdID],'\r\n',[AMProdOper.OperationCD])

 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings