And the answer is the same as before. Divide by 100 then use DEC2 to display the result.
If the variable contains 498 and you want that to display as 04 after a decimal point divide by 100 (result = 4) use DEC2 to display with a leading 0. And, again as before, if you rather round than truncate add 50, then divide by 100, then use DEC2. HSEROUT[DEC2 (498+50)/100] will display 05.
/Henrik.
Bookmarks