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!
Welcome to the Power BI Community Show! Jeroen ter Heerdt talks about the importance of Data Modeling.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
359 | |
99 | |
65 | |
55 | |
48 |
User | Count |
---|---|
338 | |
123 | |
90 | |
71 | |
67 |