Importing data from Excel to Txt File - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners) +--- Thread: Importing data from Excel to Txt File (/Thread-Importing-data-from-Excel-to-Txt-File) |
Importing data from Excel to Txt File - kriday - 07-12-2013 Hi All I have written the following code ti import data from excel to txt file both excel and txt files exists in C drive with names sample.txt and Book1.xls Code: Dim obj_FSO, my_objFile, text_FilePath but iam getting the following error Code: File not found I am not understanding it Please I need help on this Thanks RE: Importing data from Excel to Txt File - Ankur - 07-13-2013 There are syntax errors in your code - Use this - Code: Dim obj_FSO, my_objFile, text_FilePath RE: Importing data from Excel to Txt File - kriday - 07-13-2013 Thank you |