06-22-2015 09:00 AM
How do you pad a string w spaces using "Format into a string" w/o typing /s/s/s/s/s for say 5 spaces ?
Solved! Go to Solution.
06-22-2015 09:10 AM
06-22-2015 09:36 AM
If you need PASS to be left justified with the spaces after, then the format string would be %-8s
06-22-2015 09:36 AM
what about between the Lower limit and upper limit and the upper limit and test value?? Do I put a empty string on the format into a string then use the %5s??
06-22-2015 09:41 AM
Yes
06-22-2015 09:56 AM
nice...thanks..
06-22-2015 10:09 AM
You really should mark Gerd's message #2 as the solution and not mine. He presented the idea of how to do it. All I did was answer a couple followup questions you had.