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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Eric-De
Frequent Visitor

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

Hello

I need to replace value null by previous value 

EricDe_0-1714410426864.png

I have try something like this 

 

= Table.AddColumn(#"Added Index", "Custom", each Table.TransformColumns(#"Added Index", "Custom.2", each if Text.Contains([Custom.1], "" )
then
Table.SelectRows(Source, each [custom.1] <> "" and [index] = [index]-1)
else
[Custom.1]))

 

but my syntax is definitly wrong 

 

After check on the forum I have find some sample but apparently not the same usage than my needed.

 

If some people can help me to this ?

Best regards

1 ACCEPTED SOLUTION
ronrsnfld
Super User
Super User

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

 

 

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

 

 

View solution in original post

2 REPLIES 2
ronrsnfld
Super User
Super User

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

 

 

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

 

 

Bonjour / Hello

 

Thank to this ronrsnfld. I have arleady used this command but I think that take only the first value who exist, but not.

That solved my problem.

Thank to this 😀

 

Best regards

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.