Hello,
I am working with a huge database like below.
Manufacturer: Product: Model: Quantity
A: X:G1: 1000
B: S:F2: 5000
C: Y:N5: 2500
A: R:G5: 6000
and so on..
Now, at the beginning of my query I am filtering the Manufacturer. With the remaining columns, I am doing some calculations and plot some graphs and then save them as an image file. For ex.
pc = graph builder(...);
report(pc) << save picture("D:\Graph.jpg");
I have 2 questions related to modification of this script
1. Every time I run the script, the previous saved graph Graph.jpg is being overwritten. Is it possible to save a new graph keeping the old ones intact?
2. Since I am filtering the Manufacturer at the beginning, is it possible to save the graph automatically with a title depending on the chosen manufacturer and today's date, for ex. A_29032018.jpg?
Thanks in advance.