Hi,
So I have a case where I need to return all results in a column where 2 criteria are met into one cell.
My table looks something like this
I currently use a forumla like this:
Where B12 is an lookup name. However if I was to write John, I'd only get Apple. What I want is "Apple, Banana".
How would I go around doing that?
So I have a case where I need to return all results in a column where 2 criteria are met into one cell.
My table looks something like this
Code:
+-----------+------+-------+
| Job | Type | Name |
+-----------+------+-------+
| Tree | AA | Bob |
| Apple | FF | John |
| Banana | FF | John |
| Grape | CC | James |
| Mango | FF | Paul |
| Chocolate | AA | Angus |
+-----------+------+-------+
I currently use a forumla like this:
Code:
=IFERROR(INDEX(Table1[Job],MATCH(1,(Table1[Name]=B12) * (Table1[Type]="FF"),0)),"")
How would I go around doing that?