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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
emafiorito
New Member

Help - Creare la colonna "Risultato finale" con power query partendo dalla colonna "Dati"

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

TEST.JPG

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

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".

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

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".

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.