Forum Discussion
pawelj795
6 years agoPost Prodigy
Row contains specified value
Hi, I have a column like below. I want to return rows which contain let's say VVS150. How to do this?
az38
6 years agoCommunity Champion
Hi pawelj795
for example you can create a calculated column
_isContain = IF(SEARCH("VVS150", [Column]) > 0, TRUE(), FALSE())
then filter in visual by this new column
or
to create a new calculated table
_newTable = FILTER(Table, SEARCH("VVS150", Table[Column]) > 0)