Forum Discussion
Anonymous
3 years agoNot applicable
Get minimum value by category.
Hello,
I have issue to get the min value by company name.
The output should be like below.
Kindly please help me to get the Min Sales column
- Anonymous3 years ago
Hi,
Please use the following dax as a new column
Min sales = CALCULATE( MIN('Table (2)'[Sales]), FILTER( 'Table (2)', 'Table (2)'[Company] = EARLIER( 'Table (2)'[Company])))
1 Reply
- AnonymousNot applicable
Hi,
Please use the following dax as a new column
Min sales = CALCULATE( MIN('Table (2)'[Sales]), FILTER( 'Table (2)', 'Table (2)'[Company] = EARLIER( 'Table (2)'[Company])))