

Creator III
2021-12-01
07:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
"For each " loop with variable that contained several values
Hi all.
I have an issue with a loop.
Set vList = '41528142','41591529','41593262';
I created a variable
Then I want to use each value from the vList in loop
For each ID in $('vList ')
Call Extract ('$(ID)', 'False');
Next ID
But for some reason this idea doesn't works. All values from variable are applied as one, not one after another. Can you please help to fix this issue?
1,486 Views
1 Solution
Accepted Solutions

Specialist II
2021-12-01
07:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This should work...
For each ID in $(vList)
Call Extract ($(ID), 'False');
Next ID
2 Replies

Specialist II
2021-12-01
07:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This should work...
For each ID in $(vList)
Call Extract ($(ID), 'False');
Next ID


Creator III
2021-12-05
11:28 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you much for your help. It works!
