L
Luca Brigatti
I scanned a texbook and I now have 2 word documents, one contains the Odd
pages in increasing order (1, 3, 5, 7, 9....), the other contains the Even
pages in decreasing order (540, 538, 536, 534, 532 ....).
I want to write a VBA program to merge the two documents in an unique
document, somehing like this in pseudocode:
For x=1 to 540
Copy page x from Odd document and Paste it in New document: ' Start with
first page
Copy page (541 - x) from Even document and Paste it in New document: '
Start with last page (real page 2)
Next x
I know it should be possible but although I have some familiarity fith VB6 I
have never programmed in VBA.
Any help greatly appreciated.
Thanks
Luca
pages in increasing order (1, 3, 5, 7, 9....), the other contains the Even
pages in decreasing order (540, 538, 536, 534, 532 ....).
I want to write a VBA program to merge the two documents in an unique
document, somehing like this in pseudocode:
For x=1 to 540
Copy page x from Odd document and Paste it in New document: ' Start with
first page
Copy page (541 - x) from Even document and Paste it in New document: '
Start with last page (real page 2)
Next x
I know it should be possible but although I have some familiarity fith VB6 I
have never programmed in VBA.
Any help greatly appreciated.
Thanks
Luca