Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
sgg_gaikwad
Partner - Contributor II
Partner - Contributor II

Creating Procedures in Qlikview

I have Created this procedure for Qvd Creation & Dropping original table but Dropping table function is not working can anyone give solution on it?

FOR  i = 1 to NoOfTables();

let vtable=TableName($(i)-1);

let vname='$(vtable).qvd';

store $(vtable) into $(vtable).(qvd);

//DROP tables $(vtable) ;

NEXT  i ;

11 Replies
giakoum
Partner - Master II
Partner - Master II

Hi.

I think Fabrice cowered your question. Classic syntax : Sub ... end sub and Call to call it in the script.

KumaRan
Contributor III
Contributor III

Hi Sgg_gaikwad

  i am experiencing the same issue.Can you post a code for a single subroutine to store and drop qvds?