Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Qvmaster2019
Creator
Creator

For Next Error

I am having error in this code.

Could anyone help me why this is giving an error?

 

Sub LoadTableData

For i = 0 To 3

LOAD '$(i)' as Counter AutoGenerate 1;

Next i

End Sub;

The error is script line error:

Next

1 Solution

Accepted Solutions
whiteline
Master II
Master II

Thats right.

It's a procedure definition.

To call it add the following string to the script:

Call LoadTableData;

View solution in original post

3 Replies
whiteline
Master II
Master II

Strange. Works fine.

Qvmaster2019
Creator
Creator
Author

I tested this code on a different machine. There was no error but there's no table as well.

whiteline
Master II
Master II

Thats right.

It's a procedure definition.

To call it add the following string to the script:

Call LoadTableData;