G
Guest
I have a source sheet which has the data set in consecutive rows in each of
four sheets. The data has to be copied and pasted in selected workbooks but
in every other row. My current procedure works well but is very slow. Is
there a more efficient way to accomplish this? The below represents this
portion of the operation.
Do
Workbooks(wbk1).Activate
Activecell.Offset(1,0).activate
Activecell.Copy
Workbooks(wbk2).Activate
Activecell.Offset(2,).Activate
Activecell.PasteSpecial
Loop until (certain conditions are encountered)
four sheets. The data has to be copied and pasted in selected workbooks but
in every other row. My current procedure works well but is very slow. Is
there a more efficient way to accomplish this? The below represents this
portion of the operation.
Do
Workbooks(wbk1).Activate
Activecell.Offset(1,0).activate
Activecell.Copy
Workbooks(wbk2).Activate
Activecell.Offset(2,).Activate
Activecell.PasteSpecial
Loop until (certain conditions are encountered)