here is what I am trying to accomplish please look at code below.
Dim xlApp
Dim xlWkb
Set xlApp = CreateObject("excel.application")
Set xlWkb = xlApp.Workbooks.Open("\\myserver\sys\personal.xls")
Set xlWkb = xlApp.Workbooks.Open("\\myserver\sys\ReportExprenew.csv")
xlApp.Visible = True
Set xlWkb = Nothing
Set xlApp = Nothing
When the file ReportExprenew.csv opens I would like the Hotkeys "Ctrl Z" to be pressed how can accomplish this ?
Thanks for any feedback
Dim xlApp
Dim xlWkb
Set xlApp = CreateObject("excel.application")
Set xlWkb = xlApp.Workbooks.Open("\\myserver\sys\personal.xls")
Set xlWkb = xlApp.Workbooks.Open("\\myserver\sys\ReportExprenew.csv")
xlApp.Visible = True
Set xlWkb = Nothing
Set xlApp = Nothing
When the file ReportExprenew.csv opens I would like the Hotkeys "Ctrl Z" to be pressed how can accomplish this ?
Thanks for any feedback