Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |