Hi: You do not need to put the full path in the FILE= option if you use PATH= and/or GPATH=. I tend to be overly cautious, so I use both. And rather than dump everything into /folders/myfolders, I like to keep the output contained within a separate folder (shown here as /all_output). So you don't accidentally close the automatic ODS HTML destination, a safer approach would be to identify your output file using the ID= suboption: ods html(id=mystuff) path='/folders/myfolders/all_output' (url=none) gpath='/folders/myfolders/all_output' (url=none) file='main_wrapper.html'; *** code for SAS/GRAPH, if available, or SGPLOT if running UE; ods graphics / imagename='class1'; proc sgplot data=sashelp.class; scatter x=weight y=height; run; ** SGPLOT does not need quit, but SAS/GRAPH does; ods html(id=mystuff) close; If I have a chance to post an image, that shows the results, I will do it later. output: cynthia
... View more