I am expecting data as shown below
| Dollars |
| $23,100 |
| $5,183 |
| $3,326 |
| $2,070 |
| $18 |
| $0 |
but i am getting the data as below
| Dollars |
| $23,100 |
| $5,183 |
| $3,326 |
| $2,070 |
| $18 |
| $ |
when i click on the cell it shows 0 but it displays as $. what i shoul do to display as $0
Please see the code below and the code is customized for security purposes.
proc format
picture dfmt (round)
low - < 0 = '0000,009)' (mult=.001 prefix='($')
0 - high = '000,009' (mult=.001 prefix='$');
run;
ods tagsets.excelxp file = "test.xls" ;
ods tagsets.ExcelXP options(embedded_titles="no" autofit_height="yes" autofit_width="yes" sheet_interval="none"
ABSOLUTE_COLUMN_WIDTH='10' sheet_name=test")
proc report data =test;
column amt;
define amt / order order=data "Dollars ";
compute amt;
if amt> 0 then do;
call define (_col_,"format","dfmt.");
call define (_col_,"style","style={tagattr='format:$###,###'}");
end;
else if amt < 0 then do;
call define (_col_,"format","dfmt.");
call define (_col_,"style","style={tagattr='format:$###,###'}");
end;
else do;
call define (_col_,"format","dollar4.");
call define (_col_,"style","style={tagattr='format:$#'}");
end;
endcomp;
run;
ods tagsets.excelxp close;
If the value is missing in the SAS report then it will generally not display as 0 unless you create a format to do so OR have an option to display missing as '0' instead of '.'.
What does the cell look like in SAS output NOT sent to Excel?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.