Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Power Query - Add column if max date by id

Hello,   I have a set of records into a table and want to add the "ismax" column in powerquery.   DateC P_ID P_NAME ismax 01.01.2022 1 Test1 n 05.01.2022 1 Test1 y 06.01.2022...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Anonymous ,

     

    Please try this custom column:

    if [DateC] = List.Max(Table.SelectRows(#"Previous step name",(x)=>x[P_ID]=[P_ID] and x[P_NAME] = [P_NAME])[DateC]) then "y" else "n"

    all steps:

    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtQ31DcyMDJS0lEyBOKQ1OISQ6VYnWglU1wSZggJI6iEkVJsLAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [DateC = _t, P_ID = _t, P_NAME = _t]),
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"DateC", type date}, {"P_ID", Int64.Type}, {"P_NAME", type text}}),
        #"Added Custom" = Table.AddColumn(#"Changed Type", "ismax
    ", each if [DateC] = List.Max(Table.SelectRows(#"Changed Type",(x)=>x[P_ID]=[P_ID] and x[P_NAME] = [P_NAME])[DateC]) then "y" else "n")
    in
        #"Added Custom"

    If I misunderstand your needs, please tell me what your expected output is and how it is calculated.

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly --  How to provide sample data in the Power BI Forum