I have come across this code snippet to open a blank outlook message window:
import win32com.client as client
outlook= client.Dispatch('Outlook.Application')
message= outlook.CreateItem(0)
message.Display()
Now, I am wondering whether using win32com.client
I can open a blank excel sheet where I want to paste the dataset stored in clipboard, and after saving I want to close the excel sheet. I used to do this manually: copy dataset, open excel, paste in excel, save the excel, and close.
Much thanks.