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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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"
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.