Forum Discussion
Anonymous
5 years agoNot applicable
add column with value based on filter
I have two tables
| OrderID | Date |
| 1 | 13-okt |
| 2 | 14-okt |
| OrderID | OrderLine | Product | Price |
| 1 | 1 | A | 5 |
| 1 | 2 | B | 4 |
| 2 | 1 | A | 5 |
| 2 | 2 | B | 4 |
| 2 | 3 | C | 2 |
I want to add a column in Table 1 with the name of the product with the highest price. So the table looks like this:
| OrderID | Date | Product |
| 1 | 13-okt | A |
| 2 | 14-okt | A |
Which formula should I use?
Anonymous ,
Use something like this with relatioship.
Column = CALCULATE(DISTINCT('Table (4)'[Product ]),FILTER('Table (4)','Table (4)'[Price]=MAX('Table (4)'[Price])))You can use the above DAX on both Calculated column or Measure.Regards,ManikumarIf you think tjis is helpful, please Accept as Solution and leave a like.
2 Replies
- manikumar34Solution Sage
Anonymous ,
Use something like this with relatioship.
Column = CALCULATE(DISTINCT('Table (4)'[Product ]),FILTER('Table (4)','Table (4)'[Price]=MAX('Table (4)'[Price])))You can use the above DAX on both Calculated column or Measure.Regards,ManikumarIf you think tjis is helpful, please Accept as Solution and leave a like. - amitchandakSuper User
Anonymous , You can not create a column that uses slicer value. Think how can you use measure in place of that
Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.