Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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:
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.
Solved! Go to Solution.
Hi, @nickhukriede
You can replace all blank value with null and then fill down cell values.
You can also try to create a calculated column as below:
FishSpecies2 =
CALCULATE (
MAX ( 'Table'[FishSpecies] ),
ALLEXCEPT ( 'Table', 'Table'[Tag1Dec] )
)
Best Regards,
Community Support Team _ Eason
Hi, @nickhukriede
You can replace all blank value with null and then fill down cell values.
You can also try to create a calculated column as below:
FishSpecies2 =
CALCULATE (
MAX ( 'Table'[FishSpecies] ),
ALLEXCEPT ( 'Table', 'Table'[Tag1Dec] )
)
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
90 | |
77 | |
63 | |
47 | |
39 |
User | Count |
---|---|
118 | |
86 | |
80 | |
58 | |
40 |