Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
I need to get a way to find a specific group of words for a column cause interferes with other text:
Example: I need to get SC for STRATEGY CONSULTING from VAR5 instead of CON that also have the word Consulting in VAR3 :
As you see the problem is that both have CONSULTING and the CONTAINSTRING considers the VAR3 instead to consider V5
What other way can I use in this case to get the result for a specific sentence or group of words ?
Thanks !
Solved! Go to Solution.
Hi @cristianml
Don't use CONTAINSSTRING, use = e.g.
VAR V3 = IF ( '_List SG'[Service Group] = "CONSULTING", True, False)
VAR V5 = IF ( '_List SG'[Service Group] = "STRATEGY CONSULTING", True, False)
Regards
Phil
Proud to be a Super User!
Hi @cristianml
Don't use CONTAINSSTRING, use = e.g.
VAR V3 = IF ( '_List SG'[Service Group] = "CONSULTING", True, False)
VAR V5 = IF ( '_List SG'[Service Group] = "STRATEGY CONSULTING", True, False)
Regards
Phil
Proud to be a Super User!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
91 | |
86 | |
83 | |
76 | |
49 |
User | Count |
---|---|
145 | |
140 | |
109 | |
68 | |
55 |