How do I return the text from the only cell in column C as long as the values in columns A and B also match certain criteria?
A B C
1 Title 1 Type 1
2 Title 1 Type 1 Hello
3 Title 1 Type 1
4 Title 1 Type 2
5 Title 1 Type 2 World
6 Title 1 Type 2
7 Title 2 Type 1 It's
8 Title 2 Type 1
9 Title 2 Type 1 Me
etc.
E.g. in the above table I would like to, of all Title 1 and Type 1 rows, return the text in column C (on any of the rows) - in this case "Hello". How do I do that? In case it matters, there may be other non-relevant columns between A B and C.
As a second step, if there is more than one cell in column C containing text, I would like to return all of those cells and concatenate the text they contain. E.g. in the above table I would like to, of all Title 2 and Type 1 rows, return the text in column C on any of the rows - in this case "It's Me" (or "Me It's", the order doesn't matter). Is that possible?
A B C
1 Title 1 Type 1
2 Title 1 Type 1 Hello
3 Title 1 Type 1
4 Title 1 Type 2
5 Title 1 Type 2 World
6 Title 1 Type 2
7 Title 2 Type 1 It's
8 Title 2 Type 1
9 Title 2 Type 1 Me
etc.
E.g. in the above table I would like to, of all Title 1 and Type 1 rows, return the text in column C (on any of the rows) - in this case "Hello". How do I do that? In case it matters, there may be other non-relevant columns between A B and C.
As a second step, if there is more than one cell in column C containing text, I would like to return all of those cells and concatenate the text they contain. E.g. in the above table I would like to, of all Title 2 and Type 1 rows, return the text in column C on any of the rows - in this case "It's Me" (or "Me It's", the order doesn't matter). Is that possible?