Hi Everyone,
I have a table with 2 columns A and B:
A B
101 1a
101 1b
201 2a
201 2b
I want to loop through column A and get respective values.
For example:
while(A)
{
somevariable (can be a list/array/container) = B's values for 101;
}
Output needs to be:
101 1a, 1b
201 2a, 2b
Thanks in advance.
*This post is locked for comments
I have the same question (0)