I'm having a little difficulty figuring out the usage of templates for PRINT USING.
Assume I have this statement:
PRINT USING "####.##"; Value
This statement will print the variable Value with 4 characters before the decimal point and 2 characters after.
My goal is print Value with 2 positions after the decimal point but without any template affecting the integer portion to the left of the decimal point. In other words, with the example above, the program would always display 4 positions to the left of the decimal point even if it is a single digit number which means that there will be 3 extra spaces.
Is there any way around this? Is there any help on the format of templates that can be used for PRINT USING? If it is included in help, I simply missed it.