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!
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
75 | |
65 | |
51 | |
51 |
User | Count |
---|---|
184 | |
104 | |
82 | |
79 | |
78 |