Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 20 | |
| 13 | |
| 12 |