how to save excel to a particular folder using vb code
Dim obj As Object
Set obj=createobject("excel.application")
obj.Workbooks.Open filename:= "D:\REPORT.XLS" _
, password:="" 'if exist
obj.application.displayalerts=false
obj.visible=true
i need to finish this script according to save as option any suggestion would be great ful
Dim obj As Object
Set obj=createobject("excel.application")
obj.Workbooks.Open filename:= "D:\REPORT.XLS" _
, password:="" 'if exist
obj.application.displayalerts=false
obj.visible=true
i need to finish this script according to save as option any suggestion would be great ful