Forum Discussion
CJC_DB
3 years agoFrequent Visitor
PowerBI - table auto filling
First of all I have to mentoine, that this project is my first PowerBi project. I have uploaded some EXCEL tables into PowerBI. One table is containing various line which have the same part numbe...
- 3 years ago
CJC_DB , You can have a new column
coalesce([Status], "B")
or replace with one value
or find a value and replace
coalesce([Status], maxx(filter(Table, [Part no] = earlier([Part no]) ) , [Status])
- 3 years ago
Hi, CJC_DB
You can try the following methods.
Column:Column = CALCULATE(MAX('Table'[Status]),FILTER('Table',[part no]=EARLIER('Table'[part no])))Column 1 = CALCULATE(MAX('Table'[Status.1]),FILTER('Table',[part no]=EARLIER('Table'[part no])))Are these 2 columns the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
3 years agoCommunity Support
Hi, CJC_DB
You can try the following methods.
Column:
Column = CALCULATE(MAX('Table'[Status]),FILTER('Table',[part no]=EARLIER('Table'[part no])))Column 1 = CALCULATE(MAX('Table'[Status.1]),FILTER('Table',[part no]=EARLIER('Table'[part no])))
Are these 2 columns the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.