If you use ODS HTML body="Page1.html" it will increment file names Page1, Page2, Page3, etc. You could also start with 100 and it will increment 101, 102, 103, etc. If you use ODS GRAPHICS / imagename="Graph1" it will do this: Graph1.png, Graph11.png, Graph12.png, etc. The behavior is similar for other ways of setting the graphics file name in PROCs. Graphics file names start with the plain name and then 1 is appended, which is then incremented to 2 and so on. This is different from ODS pages, which replace the trailing digits. My use case is that I want to make it easier for users to find the graphics file which belongs to a page in HTML output. These two incrementing schemes make it impossible. Please make SAS more consistent and easier to use: Allow graphics file names to increment in the same way as pages: a number at the end of the name will be incremented in place.
... View more