Hi

Is it possible to retrieve cell value directly from .xls file located in Quality Center using QTP. I do not want to import the excel file rather need to fetch the cell values directly. e.g

Set objexl = Createobject ("Excel.Application")
set wbook = objexl.workbooks.open "path of excel file"
set wsheet = objexl.worksheets(1)

value=wsheet.cells(1,2).value

This code will fetch the cell(1,2) value, when i access local excel sheet ie. located at a given path in my system.

Now the scenario is that the excel file is located in QC and i need to fetch the cell values in a same way as above using QTP.

Please note i don't need to import an excel file from QC.

Thanks
Faisal