S
sylvainpellletier
Hello everybody,
I run a macro thats selects Cells in Excel and copy them into one
textFrame in powerpoint :
For Each c In Range("A1:A10")
With PPApp.ActiveWindow.Selection.TextRange
.text = Chr$(CharCode:=9) + c.Value + Chr$(CharCode:=13)
End With
Next
My problem is that I do not know how to deselect the text I've just
pasted. Therefore when I paste the next cell, the first one is
erased.
How could I deselect the pasted text and put the cursor to the end of
the text ?
Thanks in advance for your answers.
Bye !
I run a macro thats selects Cells in Excel and copy them into one
textFrame in powerpoint :
For Each c In Range("A1:A10")
With PPApp.ActiveWindow.Selection.TextRange
.text = Chr$(CharCode:=9) + c.Value + Chr$(CharCode:=13)
End With
Next
My problem is that I do not know how to deselect the text I've just
pasted. Therefore when I paste the next cell, the first one is
erased.
How could I deselect the pasted text and put the cursor to the end of
the text ?
Thanks in advance for your answers.
Bye !