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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Salve.
Qualcuno sa dirmi come faccio con power query a partire dalla colonna "Dati" per avere la colonna "Risultato finale"?
Vi ringrazio anticipatamente di cuore!
Saluti!
Emanuele
Solved! Go to Solution.
There is a standard function called "Fill Down".
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcvV19At19XFVitWJVtLCQfo6hoS4+mMI+3k6+/s4Ygi7ubq4BgGl8BoJJGMB", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Dati = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Dati", type text}}),
#"Replaced Value" = Table.ReplaceValue(#"Changed Type","*",null,Replacer.ReplaceValue,{"Dati"}),
#"Filled Down" = Table.FillDown(#"Replaced Value",{"Dati"})
in
#"Filled Down"
How to use this code: Create a new Blank Query. Click on "Advanced Editor". Replace the code in the window with the code provided here. Click "Done".
There is a standard function called "Fill Down".
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcvV19At19XFVitWJVtLCQfo6hoS4+mMI+3k6+/s4Ygi7ubq4BgGl8BoJJGMB", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Dati = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Dati", type text}}),
#"Replaced Value" = Table.ReplaceValue(#"Changed Type","*",null,Replacer.ReplaceValue,{"Dati"}),
#"Filled Down" = Table.FillDown(#"Replaced Value",{"Dati"})
in
#"Filled Down"
How to use this code: Create a new Blank Query. Click on "Advanced Editor". Replace the code in the window with the code provided here. Click "Done".
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 51 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |