I want to open a Word document and copy each formatted paragraph into its own cell in an Excel worksheet, retaining the formatting for further processing. I have been able t
The answer will be a bit ugly. This way is normally not how you should write Excel macros, but here it goes:
... Sheets(FileName).Cells(ParaCount, 1).Select Sheets(FileName).Paste ...
Don't use .Select unless you need to.
.Select