Hello,
does anyone know what built in function i can use to conver a COBOL number into a regular decimal number? For example
COBOL Picture
9(09)v9(06)
so the number would be 000009059790000
and the conversion would be 6 digits to the right of decimal and 9 digits to the left. so the output i would want is 9059.79
i was doing the following but its displaying the 0's in front and i didnt want that...so i am getting 000009059.790000
LEFT(Income, 9) + '.' + RIGHT(Income, 6)
please help...
does anyone know what built in function i can use to conver a COBOL number into a regular decimal number? For example
COBOL Picture
9(09)v9(06)
so the number would be 000009059790000
and the conversion would be 6 digits to the right of decimal and 9 digits to the left. so the output i would want is 9059.79
i was doing the following but its displaying the 0's in front and i didnt want that...so i am getting 000009059.790000
LEFT(Income, 9) + '.' + RIGHT(Income, 6)
please help...
Last edited: