Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe'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
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!
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 34 | |
| 32 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |