Hi there,
I'm new to VBA and I have find myself stuck with trying to export data from Excel to Word using VBA.
Basically, what I need is a piece of code that opens Word, copies a dynamic range in my sheet (which I have defined):
.Range("A12:J" & Range("A65536").End(xlUp).Row)
Then, the...