Forum Discussion
Anonymous
8 years agoNot applicable
Search String for Multiple Keyword...
Hi all!! I am new in PBI and I have some question about a search function. I hope someone could help me. I have a column with Keywords and I use them as a filter slicer I want to select ...
Anonymous
8 years agoNot applicable
Anonymous,
Please use DAX below, then set value of chkmeasure in visual level filter to 1.
chkmeasure = IF(
SUMX(Keys,
FIND(
UPPER(Keys[Column1]),
UPPER(MAX(Mytable[MAT_DESCRIPTION]))
,,0
)
) > 0,
1,
0
)
More details in this PBIX file.
Regards,
Lydia
gco
6 years agoResolver II
Thanks Anonymous , your measure helped me with one of my reports.