Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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", 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
Solved! Go to Solution.
From your data sample, it looks like you could simply use the Table.FillDown function.
Table.FillDown(#"Previous Step",{"Custom.1"})
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
10 | |
8 | |
6 | |
6 | |
6 |