Example -
Below code will write data to Excel file in QTP
filepath = "C:\Bugs\Report.xlsx"
Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True
Set
Wb = objExcel.Workbooks.Open(filepath)
Wb.worksheets(1).Cells(1,1).Value = "abc" ' read value from Excel file
This is how we can write data in excel file using QTP .
You may also like
What do you think on this topic? Please provide your feedback.
You may also like
- QTP Questions and Answers for Experienced guys
- Advanced QTP Questions and answers
- Advanced QTP Tutorial
What do you think on this topic? Please provide your feedback.
No comments:
Post a Comment
Please Leave your reply. We value your feedback and inputs