Product: LABEL MATRIX
Version: All Versions
|
NOTE: A combination of the Left, Right, and Mid functions can be used to complete the rearrangement. Adding a + will tie the functions together.
NOTE: The expression that displays is Mid("Hello",3,10,"x"). This can be broken down to Mid(data, start, length, padwith). This will result in the string that is exactly length characters long. These characters come from the start of the data string and extend to the right. If the data string is shorter that the start + length - 1 character the necessary number of padwith characters are added to the right side of the result. If you do not wish for any padwith characters, this can be deleted from the function all together.
Now, the correct data string needs to be applied to this function. For this example, the Keyboard input named Serial Number will be rearranged.
Below is what should display now. Right("Hello",3) is broken down to Right(data, length). This will result in the string that is exactly length characters long. These characters come from the right-most characters of the data string. The padwith discussed in the Mid function can also be applied to the Right function.
The Serial Number needs to replace "Hello" again:
Below is what should display. Left("Hello",3) can be broken down to Left(data, length). This will result in the string that is exactly length characters long. These characters come from the left-most characters of the data string. The padwith discussed in the Mid function can also be applied to the Left function.
The Serial Number needs to replace "Hello" again.
Now that the Serial Number has been rearranged it is ready to be placed on the label.
The resulting field will be placed on the label.
|