Hi Tom,
The problem is that the user wants the excel output to show the credit value as ($1,755.50) not $-1,755.50.
I am using -- Cur_Bal / style(Column)= [tagattr='format:$#,###,##0.00']; -- for formatting, I have tried all suggestions and they have not given the result.
Here is my code:
ods tagsets.excelxp
options(embedded_titles='yes' minimize_style='yes' wraptext='no' AUTOFIT_HEIGHT='yes' )
rs=none style=XLsansPrinter;
ods noproctitle;
/*Sample tab*/
ods tagsets.excelxp options(sheet_name="Inventory_Mismatch" sheet_interval='none' embedded_titles='yes' wraptext = "no" autofilter='all'
absolute_column_width="15,15,15,15,20,25,15");
proc print data=BASE_1 label Noobs;
var
IDNumber /style(Column)= [tagattr='format:text' ];
var
Status_Dt
GroupCode;
var
Cur_Bal / style(Column)= [tagattr='format:$#,###,##0.00'];
var
Category
;
run;
... View more