W
Warren Rust
(reposted from the MS Project General list)
I did a quick search and didn't see this already covered.
I track upcoming planned events in a MSProject file (2002-Standard) to allow
me to see them in the Gantt format (as opposed to the Excel spreadsheet they
come to me on).
These events are from one to many days duration and I find it convenient to
view them by week to check for conflicts. I can print them manually by
filtering by date range and setting the same print range in the Print dialog
box. However, I would really like a macro to do that for me as I print these
out for the upcoming year at the beginning of each month.
I've written the following vb script:
Sub PrintWeek()
' Macro PrintWeek
' Macro Recorded Tue 12/12/06 by Warren Rust.
For i = 1 To 52
FilterApply Name:="Date &Range..."
FilePrint
Next i
End Sub
which steps me through the process and allows me to use keyboard only. But,
I would really like to know if it's possible to set this thing up to step
itself through the process on its own starting (Sunday through Saturday) at
the project start date and ending 52 weeks later.
any help would be appreciated (even if it's just expert advice to stop
banging my head against my monitor).
thanks,
- wr
I did a quick search and didn't see this already covered.
I track upcoming planned events in a MSProject file (2002-Standard) to allow
me to see them in the Gantt format (as opposed to the Excel spreadsheet they
come to me on).
These events are from one to many days duration and I find it convenient to
view them by week to check for conflicts. I can print them manually by
filtering by date range and setting the same print range in the Print dialog
box. However, I would really like a macro to do that for me as I print these
out for the upcoming year at the beginning of each month.
I've written the following vb script:
Sub PrintWeek()
' Macro PrintWeek
' Macro Recorded Tue 12/12/06 by Warren Rust.
For i = 1 To 52
FilterApply Name:="Date &Range..."
FilePrint
Next i
End Sub
which steps me through the process and allows me to use keyboard only. But,
I would really like to know if it's possible to set this thing up to step
itself through the process on its own starting (Sunday through Saturday) at
the project start date and ending 52 weeks later.
any help would be appreciated (even if it's just expert advice to stop
banging my head against my monitor).
thanks,
- wr