Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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.
Solved! Go to Solution.
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"
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"