I'm following along with The Little SAS Book and I've reached section 5.5 Creating HTML Output. When I put the code that it says to use in and run it, the Results Viewer window pops up with a horizontal frame, similar to how it looks in the book, but no data appears... the page is blank. I've trying opening it in Internet Explorer, and Chrome as well, but it gives me the same thing and doesn't display the data. I Googled my issue for about an hour and got no where with it. Does anyone else have this problem? The code I'm using is below- *5.5 Creating HTML Output *Create the HTML files and remove procedure name; ODS HTML; ODS HTML STYLE = D3D BODY = 'C:\Users\amanda\Desktop\SAS Practice\Lengths8.html' FRAME = 'C:\Users\amanda\Desktop\SAS Practice\Lengths8.html' CONTENTS = 'C:\Users\amanda\Desktop\SAS Practice\Lengths8.html'; ODS NOPROCTITLE; DATA marine; INFILE 'C:\Users\amanda\Desktop\SAS Practice\Lengths8.txt'; INPUT Name $ Family $ Length @@; RUN; PROC MEANS DATA = marine MEAN MIN MAX; CLASS Family; TITLE 'Whales and Sharks'; RUN; PROC PRINT DATA = marine; RUN; ODS HTML CLOSE; I attached a picture to this post so you can see what I'm talking about, but there isn't too much to see... just a blank page. Please help! Alex
... View more