Forum Discussion
01_RAF_01
4 years agoFrequent Visitor
Text functions DAX
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 anoth...
- Anonymous4 years ago
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")
Anonymous
4 years agoNot applicable
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")
- 01_RAF_014 years agoFrequent Visitor
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?