Forum Discussion

hony's avatar
hony
Frequent Visitor
5 years ago
Solved

Row Hierarchy

Hi there,

 

I struggle hard to get this hierarchy flat. 

Each AR Elements belows to the latest PA above. I need the Disp1 of the according PA element at each child AR element. 

 

Thanks a lot

hony

  • Hi, hony 

     

    Try to create a custom column:

    if [DE]="PA" then [#"NR-DISP1"] else null)

    Then, to Use the fill down feature in power query

    Result:

    Please refer to the attachment below for details

     

     

    Is this the result you want? Hope this is useful to you

    Please feel free to let me know If you have further questions

     

    Best Regards,
    Community Support Team _ Zeon Zheng
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies

  • hony , Create a new column like

     

    new column =
    var _id = if([DE] ="AR", maxx(filter(Table, [Index] < earlier([index]) && [DE] ="PA"),[index]), [index])
    return
    maxx(filter(Table, [Index] =_id && [DE] ="PA"),[NR-DISP1])

  • hony's avatar
    hony
    Frequent Visitor

    hi there,

     

    thanks for that fast answer - you got any idea how to do it in power query? I need the column there to move on. 😕

     

    BEST

  • Hi, hony 

     

    Try to create a custom column:

    if [DE]="PA" then [#"NR-DISP1"] else null)

    Then, to Use the fill down feature in power query

    Result:

    Please refer to the attachment below for details

     

     

    Is this the result you want? Hope this is useful to you

    Please feel free to let me know If you have further questions

     

    Best Regards,
    Community Support Team _ Zeon Zheng
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.