I have a table with 3 columns: Name, Property and Value
All names are unique. But there are cases where, for instance, for different Names , both their properties and values are equal at the same time.
I want to add conditional column that would add all Names with line feed delimiter for which properties and values are equal. So for example, for 1st Name I would go to conditional column and would see list of 5 other names that have the same property and value
So far I have tried adding conditional column:
If Property equals Property Then
Else if Value equals Value Then Name
but it just returns values from name column and I dont know to add up these names together
Thanks!