Is there a way to save multiple .rtf files in a directory into a single .doc
file using VBA code?

RE: Save multilple .rtf files to a single .doc filew by PranavVaidya

PranavVaidya
Mon Sep 17 10:10:04 CDT 2007

You will have to write a macro for this

Open each .rtf file
copy entier text
paste in .doc file
save .doc file
close .rtf file

continue doing this until all .rtf files are not copied.
--
Pranav Vaidya
VBA Developer
PN, MH-India
If you think my answer is useful, please rate this post as an ANSWER!!


"K9" wrote:

> Is there a way to save multiple .rtf files in a directory into a single .doc
> file using VBA code?