2021 Sep 22 4:06 AM - edited 2024 Feb 04 1:33 AM
Hi Team,
My Requirement is : I have to export from Analytic Designer file/Table to Excel.
I have created Button: Here i wrote script based on SAC Userguide.
Button Script:
ExportToExcel_1.exportReport();
While i run the report and click on Button i didn't see any error/successfull message.
Please guide us how do export as excel file from using with analytic designer. Refer the below screen captures for your reference.
Regards
Veera
Request clarification before answering.
The reason why the excel export for this script isn't working is because the code/script "ExportToExcel.ExportReport()" works blindly on exporting the data. But it doesn't know what data and which data to export. Hence, add the below line of code to showcase/highlight which data to export(in our case we are exporting the Table_1 data).
Script to be used:-
ExportToExcel_1.setWidget(Table_1);
ExportToExcel_1.exportReport();
This worked in my case. Glad if it works in your case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
76 | |
30 | |
10 | |
8 | |
8 | |
7 | |
6 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.