I think you need to post your code, if you say its not working. FROM THE DOCS: If you are using the HTML destination, the individual graphs are created as PNG files by default. You can use the PATH= and GPATH= options in the ODS HTML statement to specify the directory where your HTML and graphics files are saved, respectively. This also gives you more control over your graphs. For example, if you want to save your HTML file named test.htm in the C: myfiles directory, but you want to save your graphics image files in C: myfiles png, then you can specify the following: ods html path ="C:\myfiles" gpath = "C:\myfiles\png" file = "test.htm"; When you specify the URL= suboption with the GPATH= option, SAS creates relative paths for the links and references to the graphics image files in the HTML file. This is useful for building output files that are easily moved from one location to another. For example, the following statements create a relative path to the png directory in all the links and references contained in test.htm: ods html path = "C:\myfiles" gpath = "C:\myfiles\png" (url="png/") file = "test.htm"; If you do not specify the URL= suboption, SAS creates absolute paths that are hard-coded in the HTML file. These can cause broken links if you move the files. For more information, see the ODS HTML statement in the SAS Output Delivery System: User's Guide.
... View more