We are creating a bar code with the command:
Code128c{(Command.numero)}
But it adds a 0
that does not exist in front of the code. We wanted to remove this 0
.
We are creating a bar code with the command:
Code128c{(Command.numero)}
But it adds a 0
that does not exist in front of the code. We wanted to remove this 0
.
There is a MID function (string, start_index, end_index) where end_index is optional, so you can use it as follows:
MID(Code128c{(Command.numero)}, 1)