Hi
I need to move my stored string value in Outlook, to a cell (any cell) in Excel.
But I have trouble to insert the value to the excel.
I don't want to do the cheesy way of copying the word to clipboard and paste the text to excel.
Lets start with this easy code (how should I proceed?):
Thanks in advance.
BR
Groom
I need to move my stored string value in Outlook, to a cell (any cell) in Excel.
But I have trouble to insert the value to the excel.
I don't want to do the cheesy way of copying the word to clipboard and paste the text to excel.
Lets start with this easy code (how should I proceed?):
Code:
Sub test()
Dim TestString1 As String
TestString1 = "To be inserted to any cell"
Dim appExcel As New Excel.Application
Set appExcel = CreateObject("Excel.Application")
End Sub
Thanks in advance.
BR
Groom