Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello all,
I have the following column:
| Name1 |
| 5 |
| 6 |
| 4 |
| Name2 |
| 5 |
| 9 |
l would like to fill down the cells with numbers by the name1 and name2. How can I do this. I have tried to change the cells with numbers by blank values and fill them down but this does not work.
expected result:
| Name1 |
| Name1 |
| Name1 |
| Name1 |
| Name2 |
| Name2 |
| Name2 |
Thanks for the help,
Chris
Solved! Go to Solution.
Hi @Chrisjr
Please do the followng in Power Query:
base table
add a custom column
try (if Number.FromText([Column]) > 0 then null else null) otherwise [Column]*you can also take something like <> 0 if you also have values below 0
Execute the fill
Delete the old column
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
-----------------------------------------------------
@Chrisjr , just adding to @Mikelytics solution. If you want to replace the values and do the fill down in a same column without duplicating and deleting the columns, Please try the below code in your replace value step.
= Table.ReplaceValue(Source,each [Name],
each if Number.FromText([Name]) > 0 then null else [Name],
Replacer.ReplaceValue,{"Name"})
Thanks,
Hi @Chrisjr
Please do the followng in Power Query:
base table
add a custom column
try (if Number.FromText([Column]) > 0 then null else null) otherwise [Column]*you can also take something like <> 0 if you also have values below 0
Execute the fill
Delete the old column
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
-----------------------------------------------------
HI @Arul Thanks for your reply.
I thought about this solution but how do you replace by null values?
@Chrisjr , just adding to @Mikelytics solution. If you want to replace the values and do the fill down in a same column without duplicating and deleting the columns, Please try the below code in your replace value step.
= Table.ReplaceValue(Source,each [Name],
each if Number.FromText([Name]) > 0 then null else [Name],
Replacer.ReplaceValue,{"Name"})
Thanks,
HI @Arul
Awesome addon which makes the solution more lean! Will definietely put this in my toolbox 🙂 Thank you!
Best regards
Michael
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |