Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Lookup keyword using "Searchsheet" table to find match in "Stringsheet" table.
2 types of conditions:
(i) When BOTH [Search1] AND [Search2] are found in "Stringsheet" table;
(ii) When Either [Search1] OR [Search2] are found in "Stringsheet" table;
List out the results found. Appreciate your help greatly to list out the results found in yellow highlights below. I am not familiar with List function. Thank you.
Link for my Power Bi file : List out results
Solved! Go to Solution.
Hi @Wendy_WL ,
I’ve made a test for your reference:
List For And =
CONCATENATEX(
FILTER(
Searchsheet,
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search1]) &&
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search2])
),
Searchsheet[Search1] & " " & Searchsheet[Search2],
"; "
)
List For Or =
CONCATENATEX(
FILTER(
Searchsheet,
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search1]) ||
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search2])
),
Searchsheet[Search1] & " " & Searchsheet[Search2],
"; "
)
Best Regards,
Bof
Hi @Wendy_WL ,
I’ve made a test for your reference:
List For And =
CONCATENATEX(
FILTER(
Searchsheet,
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search1]) &&
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search2])
),
Searchsheet[Search1] & " " & Searchsheet[Search2],
"; "
)
List For Or =
CONCATENATEX(
FILTER(
Searchsheet,
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search1]) ||
CONTAINSSTRING(Stringsheet[String1], Searchsheet[Search2])
),
Searchsheet[Search1] & " " & Searchsheet[Search2],
"; "
)
Best Regards,
Bof
your file is not accessible. Please grant the permissions
Thank you very much, I have grant the permission.
Here is the link again :
https://drive.google.com/drive/folders/1fWS2SbPwFJwf6Xp8aqdYtIJ4KDCU87hb?usp=drive_link
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 8 | |
| 7 |