I am writing a macro script in 3 steps:
read an excel file by browse - transfer to xml format - export xml file to certain path by browse. I know how to export by browse alrady.
Set objShell = CreateObject("Shell.application")
Set objFolder = objShell.BrowseForFolder(0, "choose the path you want to export the xml file", 0, 0)
but this one is browseforfolder.
How to browse for file? if I want to import excel data by browse?
thx