Hello
it should be easy but I cannot figure out by myself.
I have 2 lists and I would like to filter the first 1 based on the second
- ColList --> contain my table column names
- CompList --> contain extractant
For example
ColList = ("aa_Lio", "aa_Leo", "ab_Lio", "ab_Leo", "ac_Lio", "ac_Leo", "ad_Lio", "ad_Leo" )
CompList = ("Lio")
Goal
create a list which I call extractCol whichwould be in my example extractCol = ("aa_Lio", "ab_Lio", "ac_Lio", "ad_Lio")
here is my script. If i dont use the For loop it works ...
For( k = 1, k <= 1, k++,
For( i = 1, i <= 3, i++,
If( Contains( ColList[i], CompList[k]) >=1 ,
Insert Into( extractCol, ColList[i] )
)
);
);
Best regards
Lionel