Forum Discussion

vishal0soni's avatar
vishal0soni
Advocate III
3 years ago
Solved

Filter / Display rows based on substring present within a slicer

I have a list of items (Apple, Bat, Cherry, Dog, and Elephant).

One or more of these items may or may not appear in the list of multiple comma-separated keywords (Apple, Cherry, Elephant).

What i need to do is to filter out the list of rows having only the selected keyword. So if I select the item "Apple", it should display only the rows having this keyword.

I am able to find out the rows having this item, but not able to display only the identified rows.Slicers for comma-separated values

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Here, when i click "Apple" in slicer, it shall display only the rows having Apple keyword in the next table.

  • I think I got the easiest way of doing this just by using SEARCH function.

    We can write this measure:

    Exists = SEARCH(

        SELECTEDVALUE('Products'[Product]),

        SELECTEDVALUE(Solution_Products[SolutionProducts]),

        ,-1)
     
    And then use this as a filter criterion for displaying the values. 
    It works perfectly fine as desired. 
     
     

7 Replies

    • vishal0soni's avatar
      vishal0soni
      Advocate III

      Thanks Ritaf1983 

      This looks good and promising. However, there is a challenge, the list of keywords is huge (hundreds of books), and each row has large number of keywords (all nouns in a book).  So making a duplicate column, and then normalizing that entire table would result in huge list I believe.

      • Ritaf1983's avatar
        Ritaf1983
        Super User

        vishal0soni Unfortunately I don't think we have another kind of solution, that's necessary to make the relationship...same logic as lookup.

        If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

  • I think I got the easiest way of doing this just by using SEARCH function.

    We can write this measure:

    Exists = SEARCH(

        SELECTEDVALUE('Products'[Product]),

        SELECTEDVALUE(Solution_Products[SolutionProducts]),

        ,-1)
     
    And then use this as a filter criterion for displaying the values. 
    It works perfectly fine as desired.