I want a macro button on my Excel sheet that:
I will highlight (select) some text in a word document
I press the button
the text is then copied and pasted into a specified cell in my excel sheet
I have tried:
sub paste()
objword.selection.copy range("B2")
End sub
Firstly I don't know whether objword is the right syntax, and secondly everytime I select text in word, I cannot click on excel without the text deselecting, so how will I be able to do this? Do I have to create the macro in word?
Thanks