Forum Discussion

Eric-De's avatar
Eric-De
Frequent Visitor
2 years ago
Solved

used existing value(s) in a column to replace null value

Hello I need to replace value null by previous value  I have try something like this    = Table.AddColumn(#"Added Index", "Custom", each Table.TransformColumns(#"Added Index", "Custom.2", e...
  • ronrsnfld's avatar
    2 years ago

    From your data sample, it looks like you could simply use the Table.FillDown function.

     

     

    Table.FillDown(#"Previous Step",{"Custom.1"})