Reputation: 1008
I would like to return a comma separated list of strings, based on a match within two tables, BUT with a conditional criteria.
Below you will see what I mean.
And my formulas: PlayerNames:
{=TEXTJOIN(", ",TRUE,IF(B4=teamRecs,playerNames,""))}
=COUNTIF(teamRecs,B4)
=COUNTIFS(teamRecs,B4,K4:K13,"y")
My Issue is that I would like to return the list of PlayerNames, only if they have been signed. -- Is this possible in Excel?
Upvotes: 0
Views: 1718
Reputation: 75860
As per comment, you could try:
{=TEXTJOIN(", ",TRUE,IF(I4:I13=1, IF(J4:J13="y",H4:H13,""),""))}
Enter as array through CtrlShiftEnter
Shame I don't have TEXTJOIN
myself to test it, even though I have Excel 2016 :(
Upvotes: 2