I have a program loop that creates a html report. The program is called, and uses the input to create a new html report. But each time I create a new report, the png files in the graphs folder. About 20 graphs are created. ods html file = "&modell_id..htm"
path = "...\Reports\TreeBoost"
gpath = "...\Reports\TreeBoost\graphs" In the folder, the files are named SGplot1-SGplot39. It skips every even number (2,4,6,8) Shouldnt the proc create new files ? And what is with the skipping of even numbers? I have tried changing the output folder name to a fresh folder, with the same results. I seems to be stuck in some index for naming the files, and starts over each time. In previous iterations of the code, It would create new files with higher numbers. I had previously deleted some old files, before this issue appeared.
... View more