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

Assigning Column Value to a variable

Hi,

I have a table with some IDs. I am looking to iterate these IDs one by one and pass it to an REST API URL.

[Table]:
LOAD
ID
FROM [Sample.qvd]
(qvd);

FOR Each a in FieldValueList('ID')
LOAD '$(a)' as ID1 AutoGenerate 1;

Let vID=FieldValue(ID1);

Let vURL=somevalue/$(vID)/somevalue;

 

But vID doesn't pick up any values from the Table. Any help is appreciated.

Labels (1)
1 Solution

Accepted Solutions
Naushad07
Contributor III
Contributor III
Author

I made it work.

I used Let vID='$(a)' instead

View solution in original post

1 Reply
Naushad07
Contributor III
Contributor III
Author

I made it work.

I used Let vID='$(a)' instead