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.
Hi Guys,
im looking for a method to achieve the following.
I have 2 columns. the first colomn contains names (name) and the other colums countries (country).
Now im looking to make another (calculated) column which searches the column "name" for people who starting with the letters m to z and have the "country" USA and FR. For those "hits" i want the tekst in the column to be "YES". For people who starting with other letters and have the "country" USA and FR. For those "hits" i want the tekst in the column to be "YESSS". Al other combo's i want "NO".
Anyone familiair with tekstfunctions in DAX?
Solved! Go to Solution.
Hi @01_RAF_01
can you please try
if(Table[Country] in {'USA','FR'},
if(LEFT(Table[name],1) in {'m','n','o','p','q','r','s','t','u','v','w','x','y','z'},"YES","YESSS"),"NO")
Hi @01_RAF_01
I am not aware of any such pattern matching functionality on DAX.
When I had to do a similar job , I used R code in Power Query editor.
Hi @01_RAF_01 ,
You can try below code:-
Column =
VAR startswith =
LEFT ( Country_data[Name], 1 )
VAR result =
IF (
startswith
IN { "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" },
TRUE (),
FALSE ()
)
RETURN
IF (
result
&& Country_data[Country] IN { "USA", "FR" },
"Yes",
IF (
result = FALSE ()
&& Country_data[Country] IN { "USA", "FR" },
"YESSS",
"NO"
)
)
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @01_RAF_01
can you please try
if(Table[Country] in {'USA','FR'},
if(LEFT(Table[name],1) in {'m','n','o','p','q','r','s','t','u','v','w','x','y','z'},"YES","YESSS"),"NO")
thanks @Anonymous it worked. I thought maybe there was a solution to look for the whole combination of letters without typing them all seperate. any idea if there is a solution for that?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
68 | |
40 | |
29 | |
26 |
User | Count |
---|---|
89 | |
49 | |
44 | |
38 | |
37 |