Forum Discussion

FDYBI's avatar
FDYBI
Frequent Visitor
4 years ago
Solved

Help setting up a Slicer / Filter with AND logic selecting from one field and filtering another.

I may not be explaining it very well, I'm finding it hard to actually describe what I'm trying to do.  I have a set of 'Types' and 'Sub Types' associated with various reports.  The each report may ha...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi FDYBI ,

    Please refer to my pbix file to see if it helps you.

    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjI0MjRW0lGKjAQREUqxOgixiAgQEQkXM8EiZgoTQ9JrCjMPpC4WAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [report = _t, #"type" = _t, #"sub-type" = _t]),
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"report", Int64.Type}, {"type", type text}, {"sub-type", type text}}),
        #"Grouped Rows" = Table.Group(#"Changed Type", {"report"}, {{"Count", each Text.Combine([type], ","),type text}, {"subtype", each Text.Combine([#"sub-type"],","),type text}})
    in
        #"Grouped Rows"

     

    If I have misundstood your meaning, please provide your desired output and pbix file without privacy information.

    How to Get Your Question Answered Quickly 

     

    Best Regards

    Community Support Team _ Polly

     

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