M
MikeMcSharry
Hi - I put this on the other group .. and Mike Glenn suggested stick
it here ..
Is there way in project 2007 standard to easily apply 3 or 4
identical subtasks to a few hundred tasks?
I know I could type the subtasks once and then cut and paste them to
all the tasks I've already entered - is there a better way?
I've tried to produce a bit of a macro from the recorder, but I need
to tune it just a bit ..
Row 16 to 19 include the lines I want to add elsehwere..
Problem with this macro is it doesn't add them where my cursor is - it
adds them at row 16 (I can't find the bit of code that says - my
current row is x, and then between the editcopy and editpaste line I
could go back there.
Also - I'm sure this is possible - I want to indent the rows whne they
are pasted .. any suggestions would be welcome.
Mike
Sub add4linesallareas()
SelectRow Row:=16, RowRelative:=False
SelectRow Row:=16, RowRelative:=False, Height:=1, Extend:=True
SelectRow Row:=16, RowRelative:=False, Height:=2, Extend:=True
SelectRow Row:=16, RowRelative:=False, Height:=3, Extend:=True
EditCopy
EditPaste
End Sub
it here ..
Is there way in project 2007 standard to easily apply 3 or 4
identical subtasks to a few hundred tasks?
I know I could type the subtasks once and then cut and paste them to
all the tasks I've already entered - is there a better way?
I've tried to produce a bit of a macro from the recorder, but I need
to tune it just a bit ..
Row 16 to 19 include the lines I want to add elsehwere..
Problem with this macro is it doesn't add them where my cursor is - it
adds them at row 16 (I can't find the bit of code that says - my
current row is x, and then between the editcopy and editpaste line I
could go back there.
Also - I'm sure this is possible - I want to indent the rows whne they
are pasted .. any suggestions would be welcome.
Mike
Sub add4linesallareas()
SelectRow Row:=16, RowRelative:=False
SelectRow Row:=16, RowRelative:=False, Height:=1, Extend:=True
SelectRow Row:=16, RowRelative:=False, Height:=2, Extend:=True
SelectRow Row:=16, RowRelative:=False, Height:=3, Extend:=True
EditCopy
EditPaste
End Sub