Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Ajax Settings...

Hi all,

When i use "Export to Excel" using AJax-Client it exports rows  in .xls(97-2003) Format ...

is there a way where we could change this setting to .xlsx or csv format

Thanks

1 Reply
Not applicable
Author

Don't believe you can change the setting but you can have a trigger that runs:

sub ExportCSV

set obj = ActiveDocument.GetSheetObject("CH01")

obj.exportex "Path\FileName.csv", 1

end sub

hth,

Stephen