Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

PowerQuery Advanced Filtering Help

Hello,   I am aware you can filter by all blanks, or for specific data-points, HOWEVER, I am trying to filter between a mix of blank/existing data. On the table below, you can see a mix of names th...
  • KNP's avatar
    KNP
    4 years ago

    You're missing a comma at the end of your FM_Billing_Report_Sheet statement, refencing the wrong step for the Grouped Rows and needed to lose the 'in FM_Billing_Report_Sheet' at the end.

     

    Try this, may still need some alterations but this should get you closer.

     

    let
      Source = Excel.Workbook(
        File.Contents("C:\Users\riesc_86uyy47\Desktop\Files\Full Daily Report.xlsx"),
        null,
        true
      ),
      FM_Billing_Report_Sheet = Source{[Item = "FM_Billing_Report", Kind = "Sheet"]}[Data],
      #"Grouped Rows" = Table.Group(
        FM_Billing_Report_Sheet,
        {"Name"},
        {{"all", each _, type table [Name = nullable text, Rate = nullable number]}}
      ),
      #"Added Custom" = Table.AddColumn(
        #"Grouped Rows",
        "Custom",
        each Table.AddColumn([all], "index", (all) => if all[Rate] = null then 1 else 2)
      ),
      #"Aggregated Custom" = Table.AggregateTableColumn(
        #"Added Custom",
        "Custom",
        {{"index", List.Distinct, "Count of index"}}
      ),
      #"Extracted Values" = Table.TransformColumns(
        #"Aggregated Custom",
        {"Count of index", each Text.Combine(List.Transform(_, Text.From), ","), type text}
      ),
      #"Filtered Rows" = Table.SelectRows(
        #"Extracted Values",
        each ([Count of index] = "1,2" or [Count of index] = "2,1")
      ),
      #"Expanded all" = Table.ExpandTableColumn(#"Filtered Rows", "all", {"Rate"}, {"Rate"}),
      #"Removed Other Columns" = Table.SelectColumns(#"Expanded all", {"Name", "Rate"}),
      #"Changed Type1" = Table.TransformColumnTypes(#"Removed Other Columns", {{"Rate", Currency.Type}})
    in
      #"Changed Type1"

     

    This website can be very helpful for formatting and pointing out errors in code.

    https://www.powerqueryformatter.com/formatter