Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is there a way to use system fields ($Table, $Field, $Fields ...) while script is still running???
Thanks for your help.
What do you want to use this for? There are Table functions ‒ QlikView such as
TableName()
NoOfTables()
NoOfFields()
FieldName()
What do you want to use this for? There are Table functions ‒ QlikView such as
TableName()
NoOfTables()
NoOfFields()
FieldName()
Hi Sunny,
I need to know the way to loop through a couple of tables while running the script and which name's may change during the process, so I wanted to see if there was a chance to get them dinamically.
I used a for loop that worked perfectly:
for i = 0 to NoOfTables() - 1
LET vTableName = TableName(i);
Awesome