Remove 0 from the front in string Crystal Reports

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 .

    
asked by anonymous 10.03.2014 / 19:33

1 answer

1

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)
    
10.03.2014 / 20:13