Forum Discussion
Anonymous
9 years agoNot applicable
Search a string based on a filter
Hi All, I am trying out following scenario to search on a string based on a filter. So i have a slicer which contains the name of the materials. Once i select one material i need to search th...
- 9 years ago
Anonymous
Did you create ISITEM as a calculated column? You need to create it as measure with following formula and drag it into table visual as below.
ISITEM = IF ( ISERROR ( SEARCH ( [ITEM], CALCULATE ( MAX ( RULES_TAB[RULES] ) ) ) ), 0, 1 )Best Regards,
Herbert
v-haibl-msft
Microsoft Employee
9 years agoAnonymous
Did you create ISITEM as a calculated column? You need to create it as measure with following formula and drag it into table visual as below.
ISITEM =
IF (
ISERROR ( SEARCH ( [ITEM], CALCULATE ( MAX ( RULES_TAB[RULES] ) ) ) ),
0,
1
)
Best Regards,
Herbert
Anonymous
9 years agoNot applicable
Hi Herbet,
Yay!! Your Method works. Thanks a lot Herbet. Earlier the ISITEM was a calculated column.
Thanks again for the solution.
Regards,
Maddy