Here's my formula:
=TEXTJOIN(", ",TRUE,UNIQUE(IF(A2=Sheet1!$E:$E,Sheet1!$L:$L,"")))
Here's my result:
0, AOI-1, AOI-2
So far it's working to return unique values in Sheet1!$L:$L; but I don't want it to return a 0 for the blank values in Sheet1!$L:$L.
All rows in Sheet1!$E:$E have values that are not blank, my values to return are sometimes blank, but I don't want to see those returned.
Another way to say it is, if VALUE_IS_TRUE is blank, don't return it.