Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All, I am using Qlikview 64 bit Server SR 5 for generating Qvds, Analysis Files and sending mails.
I have my analysis files A1, A2 (with 'n' no. of reports) which are dependent on main Qvd Generator file Q1.
Tasks are defined for generating report based on analysis files A1,A2 and mail is send based on trigger defined in task.
The requirement is:
Task not to be triggered when there is no record in Qvd Q1(Qvd consists of multiple tables, if no record in any one of the table then task should not get triggered)
Please suggest how to fulfill the requirement.
Thanks in advance
Something like this should work, hope help, Regards
corrado
TABLAUNCH:
LOAD * FROM Example.qvd (qvd);
if NoOfRows('TABLAUNCH')>0 then
execute "C:\Program Files\QlikView\Qv.exe" /R "C:\QvData\MyDoc.qvw";
End if