Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I am looking to create the final column in the table below in PowerBI (replicated in excel for an example).
The idea is to use the Custom column instead of the [Description] column, to replace the blanks. Each Item Name that has the same value should return the description value which is not blank.
Solved! Go to Solution.
@GeorgeG , A new column
New column =
var _1 = maxx(filter(table, [itemname] = earlier([itemname]) && [description] <> blank()), [description] )
return
if(isblank( [description] ) , _1, [description] )
@GeorgeG , A new column
New column =
var _1 = maxx(filter(table, [itemname] = earlier([itemname]) && [description] <> blank()), [description] )
return
if(isblank( [description] ) , _1, [description] )
Perfect, thank you very much!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |