Method 2: create Excel object using CreateObject method.
E.g: Set ExcelObj = CreateObject("Excel.Application") ExcelObj.Workbooks.Open "C:abcd.xls" Set NewSheet = ExcelObj.Sheets.Item(1) 'first sheet NewSheet.Cells(4,4) = "test" 'set the value to the excel cell var_Value = NewSheet.Cells(5,4) 'retrieve value of the cell(5,4)