Forum Discussion
Aley1690
Sep 02, 2020Copper Contributor
List out people who like only a particular fruit
Hi,
I want to know the name(s) of the people who like only a particular fruits. Please help
Aley1690 Attached is one way to do it (which only works if you have an Office 365 subscription)
4 Replies
- PeterBartholomew1Silver Contributor
TEXTJOIN can also be useful for filtering null returns. Basic form
= TEXTJOIN(", ",1,IF(ISNUMBER(FIND([@Fruits],Fruits)), Name,""))or with a full set of 365 go-faster stripes
= LET( SelectedNames, IF(ISNUMBER(FIND([@Fruits],Fruits)), Name,""), SortedNames, SORT(SelectedNames), TEXTJOIN(", ", 1, SortedNames)) - Riny_van_EekelenPlatinum Contributor
- JKPieterseSilver Contributor
Aley1690 Attached is one way to do it (which only works if you have an Office 365 subscription)
- Aley1690Copper Contributor
Thank you so much! Worked Perfectly JKPieterse