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!
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Welcome to the Power BI Community Show! Jeroen ter Heerdt will talk about the importance of Data Modeling.
User | Count |
---|---|
342 | |
99 | |
63 | |
51 | |
49 |
User | Count |
---|---|
327 | |
120 | |
84 | |
68 | |
63 |