Forum Discussion

M_SBS_6's avatar
M_SBS_6
Icon for Helper V rankHelper V
2 years ago
Solved

Flag to exclude data in table

Hi,  I have a table which has the following values:   App.ID Call.LastCall Meeting.Lastmeet App.LastCash App.Cash_val   In some instances, we have a blank record for all 3 of the following c...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi all,thanks for the quick reply, I'll add more.

    Hi M_SBS_6 ,

    Regarding your question, please first create a custom column in Power Query.

    if [Call.LastCall] = null and
    [Meeting.Lastmeet] = null and 
    [App.LastCash] = null 
    then 1 else 0

    Then filter by custom column

    M code

        #"Added Custom" = Table.AddColumn(#"Expanded Table3", "Custom", each if [Call.LastCall] = null and
        [Meeting.Lastmeet] = null and 
        [App.LastCash] = null 
        then 1 else 0),
        #"Filtered Rows" = Table.SelectRows(#"Added Custom", each [Custom] <> 1)
    in
        #"Filtered Rows"

    Final output

     

    Best Regards,
    Wenbin Zhou