Save multilple .rtf files to a single .doc filew

K

K9

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

Pranav Vaidya

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.
 
Top