Forum Discussion
elakkiyaselvan
3 years agoFrequent Visitor
Power bi wild card
Hi All, I have a requirement to convert below Qlik script to Power bi // ID if(WildMatch(Column,'*ABC*'),'N', ) For example, I am trying to hot code a middle text that starts with an...
- 3 years ago
hi check this measure if works with you :
ID = IF( SEARCH("ABC", [Column], 1, 0) > 0, "N", BLANK() )Please accept as a solution if it works with you .
Regards ,
bhelou
Responsive Resident
3 years agohi check this measure if works with you :
ID = IF(
SEARCH("ABC", [Column], 1, 0) > 0,
"N",
BLANK()
)Please accept as a solution if it works with you .
Regards ,