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!
User | Count |
---|---|
364 | |
95 | |
64 | |
54 | |
36 |
User | Count |
---|---|
355 | |
108 | |
72 | |
58 | |
48 |