I have this basic code which read cell in an excel file and I am assuming that it stores it in $sCellValue, now how do I paste this data in a Window tittled "Open" in a software ?
Basically I have all paths of files that I want to open in a single column of excell, and I want to open each file so I am trying to copy each path from excel file and Paste it in Open dialog box. Also, is there is any simpler way ?
Thanks for any help
[ autoit ]
Local $sFilePath1 = @ScriptDir & "\Master File.xlsm" ;This file should already exist Local $oExcel = _ExcelBookOpen($sFilePath1) _ExcelSheetActivate($oExcel,"Part B") $sCellValue = _ExcelReadCell($oExcel, 2, 1)
Basically I have all paths of files that I want to open in a single column of excell, and I want to open each file so I am trying to copy each path from excel file and Paste it in Open dialog box. Also, is there is any simpler way ?
Thanks for any help