Forum Discussion
SeanN87
5 years agoFrequent Visitor
Taking First value from duplicates in a column
I'm trying to create a dimension table that has Part Numbers and a corresponding Part Description. I successfully created the table with one column of Part Numbers (because those are unique), but dep...
- 5 years ago
[Parts] = FILTER( ADDCOLUMNS( DISTINCT( T[Part_Number] ), "Description", FIRSTNONBLANK( T[Part_Description], 1 ) ), NOT ISBLANK( T[Part_Number] ) )
daxer-almighty
Solution Sage
5 years ago
[Parts] =
FILTER(
ADDCOLUMNS(
DISTINCT( T[Part_Number] ),
"Description",
FIRSTNONBLANK( T[Part_Description], 1 )
),
NOT ISBLANK( T[Part_Number] )
)
SeanN87
5 years agoFrequent Visitor
Perfect! Thank you so much for the quick response.