BookmarkSubscribeRSS Feed
milts
Pyrite | Level 9

Hi Experts,

I would like to use ods html to output an excel file(since tagsets.excelxp creates larger files). However when I try to generate the file using the style sasweb it is not applied on the excel. For seaside, sansprinter, money, it works.

Please see example code below and please point out if I did something wrong?

data x;

    a = 1;

    b = 2;

run;

ods html file="D:\mytest.xls" style=sasweb;

    proc print data=x;

    run;

ods html close;

1 REPLY 1
Cynthia_sas
Diamond | Level 26

Hi:

  Try using a Microsoft-friendly version of HTML markup language. Microsoft does not always like the way that ODS HTML specifies style because Microsoft did not like the HTML 4.0 method of specifying style. That destination would be:

 

ods msoffice2k file="D:\mytest.xls" style=sasweb;

    proc print data=x;

    run;

ods msoffice2k close;

cynthia

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1118 views
  • 0 likes
  • 2 in conversation