Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! 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"
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 11 | |
| 11 | |
| 8 | |
| 6 |