-
1
- #1
brunello67
Vendor
Hi
i'm very new and i dont know VBScript.
i have to filter some raws in an excel file and i found a VBScript code that is working but it is partial.
this is it:
Dim objExcel
Dim objWorkbook
Dim objWorksheet
Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open("\\SERVER\files claudio\assett.xls")
Set objWorksheet = objWorkbook.Worksheets("test")
objExcel.Visible = True
With objWorksheet
.Range("C1").AutoFilter 3,"EBD"
End With
but i need to save the file and to rename
is there anybody that can continue this code with missing part?
thanks
Bruno
Italy
i'm very new and i dont know VBScript.
i have to filter some raws in an excel file and i found a VBScript code that is working but it is partial.
this is it:
Dim objExcel
Dim objWorkbook
Dim objWorksheet
Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open("\\SERVER\files claudio\assett.xls")
Set objWorksheet = objWorkbook.Worksheets("test")
objExcel.Visible = True
With objWorksheet
.Range("C1").AutoFilter 3,"EBD"
End With
but i need to save the file and to rename
is there anybody that can continue this code with missing part?
thanks
Bruno
Italy