Sevn
I trust ME!
- Local time
- Today, 02:14
- Joined
- Mar 13, 2008
- Messages
- 97
I currently have a report that consists of ~30 sales reps. The report is opened & exported to PDF in VBA. I am needing to create the same report, but need each rep to have a separate PDF.
Can someone give me a loop procedure that I can use to produce the report from a dynamic list? The reps will change from month to month, so hardcoding the names won't work.
For example:
I know this won't work, but it's what i envisioned in my head.
Thanks,
Can someone give me a loop procedure that I can use to produce the report from a dynamic list? The reps will change from month to month, so hardcoding the names won't work.
For example:
Code:
sub report
i = rep
for each i
open report
export report
next i
end sub
I know this won't work, but it's what i envisioned in my head.
Thanks,