Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
MohsinBipu
Helper I
Helper I

Populate Merge data based on unique Column value

Hello mate,

I need your kind help.  As per the below picture, I want to get the Output table from input unstructured data.  Here you can see the value will fill down based on the PO number. 

I want to do this with Fill down. This option fills down for other POs like B, and D. But I want Value will be filled down based on PO number only. 

MohsinBipu_0-1710399714195.png

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Use below code. Replace Source appropriately.

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Filled Down" = Table.FillDown(Source,{"PO"}),
    #"Grouped Rows" = Table.Combine(Table.Group(#"Filled Down", {"PO"}, {{"All", each Table.FillDown(_,{"Value"})}})[All])
in
    #"Grouped Rows"

 

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Use below code. Replace Source appropriately.

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Filled Down" = Table.FillDown(Source,{"PO"}),
    #"Grouped Rows" = Table.Combine(Table.Group(#"Filled Down", {"PO"}, {{"All", each Table.FillDown(_,{"Value"})}})[All])
in
    #"Grouped Rows"

 

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors