I'm in the process of creating a database with many chemicals & associated .pdf files with their information.
Each chemical has a unique ID and in the same row has a link to the .pdf file on the network.
In addition, each chemical has a location assigned to it.
My goal is to be able to print all .pdf associated with chemicals in each location.
For example:
ID Chemical Location PDF-link
1 Acetone Lab-A A:/folder/1.pdf
2 Fire Lab-A A:/folder/2.pdf
1 Acetone Lab-B A:/folder/1.pdf
3 Sponge Lab-B A:/folder/3.pdf
4 Candy Lab-B A:/folder/4.pdf
If I specify Lab-A, I would like it to print both PDFs: 1.pdf, 2.pdf.
If I specify Lab-B, I would like it to print those respective .pdf files.
Of course I also want to be able to print all of them as well, but I think if I figure out how to do the above, I can manage to do this.
Thanks for any help.