Hi
I want to search for specific rows thay match a specific column (A) text and then concatenate al the found rows column (B) strings in a specific cell (text).
So in Tab1
no - date - Fruit - Amount - Quality
1 - april 1 - Bananas - 200 - Green
2 - april 2 - Bananas - 300 - Ripe
3 - april 2 - Apples - 400 - Good
4 - april 2 - Pears - 100 - Good
5 - april 3 - Bananas - 50 - Ripe
6 - april 3 - Apples - 50 - Bad
Tab 2
1 - Appels - (concatenate Quality from all rows from Tab 1 with Apples, looks like “Good, Bad”)
2 - Bananas - (concatenate Quality from all rows from Tab 1 with Bananas, looks like “Green, Ripe, Ripe”)
3 - Pears
So how can I do that?