Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I couln't find any information on creating an excel file and exporting that file to a specific folder monthly. Can some send me the sntax that is used to do this, I'm assuming this is a popular demand but again I couldn't find anything on the community.
i tried to create this kind of export in one of sample apps
and took a manual reload it doesn't though out the file
I think on post reload trigger doesn't get trigger with manual reload
try to do the reload on server.
you can create a button or text object and add action of export you are looking for and on clicking button/text object
it will export the data accordingly.
Can I not use ONPOSTRELOAD in the triggers? Looking to export specific columns. I've tried the Store function but I get a lot of unnecessary data, such as my query.
Test:
load
[cs] as 1
,
,[tet] as 3
Resident Test;;
STORE export into
txt, delimiter is ',');
(
drop Table export
This will only work in server mode.