Set oExcel = CreateObject("Excel.Application")
Set oWBook = oExcel.Workbooks.Open("C:/JX/WorkSpace/test.xls")
Set oSheet = oExcel.ActiveWorkbook.Worksheets("Sheet1")
oSheet.Activate
Set str_RequireText = oExcel.Cells.Find("dog")
If Not str_RequireText is Nothing Then
int_Row = str_RequireText.Row
int_Col = str_RequireText.Column
Reporter.ReportEvent micPass, "Find Value in Excel","MyPlace was found in Excel in Row: "&int_Row& "Column: "&int_Column
Else
Reporter.ReportEvent micFail, "Find Value in Excel","MyPlace was not found in Excel"
oExcel.Quit
Set oExcel = Nothing
ExitRun
End If