presideji
13 years agoOccasional Contributor
using excel spread sheet with testcomplete
I want to call up data from more than one sheet within an excel workbook. So far I see that you can only call up data from only one sheet within an excel workbook. How do you call up data from ...
- 13 years agoSet Objexcel=CreateObject("Excel.Application")
Set Objworkbook= Objexcel.Workbooks.open(filepath)
Set ObjSheet1= Objworkbook.worksheets("Sheet1")
Set ObjSheet2= Objworkbook.worksheets("Sheet2")
by using above worksheets object you can read or write data...