David Fickbohm
2005-07-15 21:57:48 UTC
People,
I calculated three percentages. Then formatted then and exported them to excel. The formatting looks great in the sas file prior to exporting. In excel the formatting is gone.
Is there a way to retain the formatting ?
data county_out;
set county_data_sumd;
pct_highschool_grads = (total_hs_grads / county_tot_pop);
run;
data final;
format pct_highschool_grads percent5. ;
run;
proc export final;
outfile = 't:\dave\demographic\out\county_&sysdate..xls'
dbms = excel2000 replace;
run;
In sas datasets before exporting
pct_highschool_grads --- 23%
in excel after exporting
.2345435
If this is not possible it is OK, someone please tell me it can not be done and the client will be happy. I can multiply the resulting percent by 100 and round to get 23 That will be fine with the client.
all help will be greately appreciated.
Dave Fickbohm
Use Technology to the Fullest
1250 45th st suite 200
Emeryville, CA, 94608
510 594 4151 voice
---------------------------------
Yahoo! Mail for Mobile
Take Yahoo! Mail with you! Check email on your mobile phone.
I calculated three percentages. Then formatted then and exported them to excel. The formatting looks great in the sas file prior to exporting. In excel the formatting is gone.
Is there a way to retain the formatting ?
data county_out;
set county_data_sumd;
pct_highschool_grads = (total_hs_grads / county_tot_pop);
run;
data final;
format pct_highschool_grads percent5. ;
run;
proc export final;
outfile = 't:\dave\demographic\out\county_&sysdate..xls'
dbms = excel2000 replace;
run;
In sas datasets before exporting
pct_highschool_grads --- 23%
in excel after exporting
.2345435
If this is not possible it is OK, someone please tell me it can not be done and the client will be happy. I can multiply the resulting percent by 100 and round to get 23 That will be fine with the client.
all help will be greately appreciated.
Dave Fickbohm
Use Technology to the Fullest
1250 45th st suite 200
Emeryville, CA, 94608
510 594 4151 voice
---------------------------------
Yahoo! Mail for Mobile
Take Yahoo! Mail with you! Check email on your mobile phone.