Assuming you have a string data type you would use something like
Code: Select all
Left("00000",5-Len(InLink.TheString)) : InLink.TheStringIf the incoming data type is not string, you would need to convert it to string.
Code: Select all
Left("00000",5-Len(InLink.TheString)) : InLink.TheString