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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
nickhukriede
Frequent Visitor

Fill Blanks of Column Based on Value of Another Column

I have the following setup in my table:

 

Tag1Dec (numerical data) and a FishSpecies associated with that data. The problem is we may only have 1 fish species but many duplicate Tag1Dec. I am attempting to fill the FishSpecies by already previously known numbers from Tag1Dec. Image and explanation below:

 

nickhukriede_0-1633473768112.png

As you can see I have a FishSpecies = "LL" for the Tag1Dec = 989001033212881. There are multiple rows with the same Tag1Dec value and I would like to populate the FishSpecies with the corresponding "LL" that is in the first row.

 

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi,  @nickhukriede 

You can replace all blank value with null and then fill down cell values.

68.png


You can also try to create a calculated column as below:

FishSpecies2 =
CALCULATE (
    MAX ( 'Table'[FishSpecies] ),
    ALLEXCEPT ( 'Table', 'Table'[Tag1Dec] )
)

66.png

 

Best Regards,
Community Support Team _ Eason

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi,  @nickhukriede 

You can replace all blank value with null and then fill down cell values.

68.png


You can also try to create a calculated column as below:

FishSpecies2 =
CALCULATE (
    MAX ( 'Table'[FishSpecies] ),
    ALLEXCEPT ( 'Table', 'Table'[Tag1Dec] )
)

66.png

 

Best Regards,
Community Support Team _ Eason

Hi @v-easonf-msft,

Thanks for your reply, I found this solution work perfectly. Could you please help explain the logic behind it as I am not familiar with these DAX functions? Thanks a lot!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.