I'm trying to align the column values, but they are of different lengths. I can't just use Print '123' (+1, 9)
and then Print '123456' (+1, 9)
because it'll look something like this:
123456790123456790123456790123456790123456790123456790 <- Ignore this line
123
123456
Notice how the right most numbers aren't aligned with each other. I want the output to be like this:
123456790123456790123456790123456790123456790123456790 <- Ignore this line
123
123456
So I would want to stop printing at a certain index. How would I achieve this using SQR?
I tried Print '123' (+1, 9)
and Print '1234' (+1, 9)
but it gives the wrong results.