PS Query - Currency format
Hi, I have a query that selects POSTED_TOTAL_AMT(Signed Number Field) from PS_LEDGER_KK record. I want to display it with a thousand separator. looks like there is no PS option to do that, so I used an expression - TO_CHAR ( A.BUDGET_AMOUNT, '999,999,999,999.99') - which converts the field to a character, so its getting displayed in the middle of the field. I want to be left-oriented so that it's easy to read. I have tried LPAD, TRIM and nothing works.
Any help? TIA