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

Is it possible to run a macro in background?

I have a macro that exports a huge amount of data to a CSV file. The problem is that it takes almost 1 hour to execute and meanwhile the QV document is blocked.

Many thanks in advance

Javier

2 Replies
hic
Former Employee
Former Employee

No. I suggest you create your export in the script instead, using

     Store Table into [FileName.csv] (txt, delimiter is '\t') ;

HIC

Anonymous
Not applicable
Author

Thanks Henric,

The issue is that the data to be exported might depend on the user filter selection. So I do not see how to do this in the script... it needs to be done inside the QV app.

Regards