The "bursting" of a batch of reports -- reports you designed using the SAS report builder -- is not something that you can accomplish interactively in EG. Traditionally that is a batch SAS process or else something you accomplish in SAS Web Report Studio. However, you might be able to accomplish this using SAS Enterprise Guide automation and scripting, if you don't mind writing a little bit of VBScript. In script, you can programmatically set a prompt value, run a process flow, and export a result. There are lots of automation examples in this sasCommunity.org article. Otherwise, you can try to refactor your process into a single SAS program and control the report design with ODS LAYOUT, then use SAS Macro language to repeat the process for each report subject. I have a simple example of that in this blog post: Implement BY processing for your entire SAS program - The SAS Dummy Chris
... View more