How to set a number variable that starts with value "00"

Hello I need to print the Serial number of each assembly

It is composed by:

  • Model Number:
  • assembly number

Model number is already record in a variable; my main problem is that I need to use 3 digits for the assembly number; for example:

  • First assembly: 001
  • Second assembly: 002
  • Third assembly: 003

Is it possible to set a variable that starts with 001?

hello @luis.oropeza, great question.

Tulip automatically removes any 0’s ahead of the numbers. can you store the serial number as a Text type?? this way the first 2 00’s will not be truncated.

let me know if this is an option for you.

gio