Forum Discussion

kelalfbry's avatar
kelalfbry
New Member
5 years ago
Solved

Filter matrix by slicer using disconnected table

  • kelalfbry's avatar
    kelalfbry
    5 years ago

    I got it to work by using the following disconnected table: ProductType

    Description                                                Search Value

    ALL FRESH                                                 FRESH

    ALL YIELDED AND SELECT FRESH ITEMS  YIELDED

     

    I added the following visual filter, where 'Show items when the value:' 'is' 'True 

    IsFiltered =
    IF(
    SUMX('ProductType',
    FIND(
    'ProductType'[SearchValue],
    MAX('DailyBaseProduct'[ProductFilter]),,0)) > 0,
    "True",
    "False"
    )