Forum Discussion

atpbi10's avatar
atpbi10
Helper I
4 years ago
Solved

Custom slicer with multiple conditions

I have data table in this form:     A B Val1 Top10 Val2 Top10 Val3 Top25 Val4 Top50 Val5 Other       How can I create custom slicer than will allow me to fi...
  • v-kkf-msft's avatar
    4 years ago

    Hi atpbi10 ,

     

    Please create a new table in Power Query Editor:

     

    let
        Source = Table.SelectColumns(Table, "B"),
        #"Added Custom" = Table.AddColumn(Source, "SelectValue", each Table[B]),
        #"Expanded SelectValue" = Table.ExpandListColumn(#"Added Custom", "SelectValue"),
        #"Removed Duplicates" = Table.Distinct(#"Expanded SelectValue"),
        #"Filtered Rows" = Table.SelectRows(#"Removed Duplicates", each ([SelectValue] <= [B] and ([B] = "Other" or [SelectValue] <> "Other")))
    in
        #"Filtered Rows"

     

    Then create a relationship in 'Slicer'[SelectValue] and 'Table'[B].

     

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.