Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Multiple CountIf function in Power Query

Hello everyone, I would like to enforce a countif function in from a data source I have. There are multiple columns containing a "Yes", "No" data. Is there a way I can enforce a countif functio...
  • Fowmy's avatar
    Fowmy
    5 years ago

    Anonymous 

    Please try the following code, I have added two columns as requested:

     



    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcnEMcVTSwUbF6sBl/fxhBLoMsgKIXCwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t, Column4 = _t]),
        #"Added Custom" = Table.AddColumn(Source, "1st Two Columns", each List.Count(List.Select(Record.ToList(Record.SelectFields(_,{"Column1","Column2"})), each _ =  "NO"))),
        #"Added Custom1" = Table.AddColumn(#"Added Custom", "2nd Two Columns", each List.Count(List.Select(Record.ToList(Record.SelectFields(_,{"Column3","Column4"})), each _ =  "NO")))
    in
        #"Added Custom1"

     

    ________________________

    If my answer was helpful, please mark it as a solution

    Click on the Thumbs-Up icon if you like this reply 🙂

    YouTube
    LinkedIn