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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Fill down

Hi All,

 

I have a raw data that's being updated every month. What I need (don't know if it's possible or not) is to fill down the "Country" column, based on the above order.

 

The country's are always in this order:

Albania

Algeria

Argentina

etc.

 

When the new raw data is uploaded it doesn't include the country column, it only includes other columns (columns with values)

 

What I need is to fill down the new rows I've uploaded (new Raw data) with the Country names but in the same order.

At the moment if I use fill Down, it will select the last country name (Zimbabwe) and fill that name to all of the new rows, but I need it to remember the order of Country column and fill first row with Albania, second row with Algeria and so on.

 

Is this possible?

GeorgeGabaroi_0-1653552792365.png

 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @Anonymous 

 

You can try the following methods. First you need to add an index column, starting from 1.

vzhangti_0-1653900762597.png

vzhangti_1-1653900785149.png

Create a new table and fill out the names of the countries you need to add in order.

vzhangti_2-1653900841081.png

Create a new custom column.

if [Column1] = "" then
let
a= List.Count(#"Added Index"[Column1]),b=List.Count( List.Select(#"Added Index"[Column1], each _ = "")),c=Number.Mod([Index]-(a-b)-1, 3)
in
#"Table (2)"{c}[Column1]
else [Column1]

vzhangti_3-1653900922399.png

Is this what you expect the output to be?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-zhangti
Community Support
Community Support

Hi, @Anonymous 

 

You can try the following methods. First you need to add an index column, starting from 1.

vzhangti_0-1653900762597.png

vzhangti_1-1653900785149.png

Create a new table and fill out the names of the countries you need to add in order.

vzhangti_2-1653900841081.png

Create a new custom column.

if [Column1] = "" then
let
a= List.Count(#"Added Index"[Column1]),b=List.Count( List.Select(#"Added Index"[Column1], each _ = "")),c=Number.Mod([Index]-(a-b)-1, 3)
in
#"Table (2)"{c}[Column1]
else [Column1]

vzhangti_3-1653900922399.png

Is this what you expect the output to be?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.