Question:
Can reports with .CSV extension be generated?
Solution:
Yes, they can. When the report has been previously set up, you can add a separator by selecting a Text export; to do so, use the script below.
Set Report = Application.LoadReport("SectionReport1")
Set reportFilter = report.GetExportFilter("Text")
reportFilter.TextDelimiter = ","
report.Export reportFilter, "C:\report.csv"
When no report has been previously created, you can generate de CSV file directly from E3Browser, via Export library .
