Hi,
I'm trying to export the table data into .CSV file by using below code. It works fine with desktop app but not works while opening from AJAX browser(i.e. Google Chrome).
Can you please share the code that works on browser for exporting data into CSV file.
Sub ExportToFile
'Download Sheet ojbect data to CSV
set sObject = ActiveDocument.GetSheetObject("TB01")
sObject.Export "C:\download\BIB\TestFile.csv", ", "
Thanks in advance.