Forum Discussion
Sowmiya
7 years agoHelper III
DAX Formula
Hi Community, Help me with DAX that returns the Largest S.NO's Corresponding Description but Description must be nonblank. In the Screenshot, DAX must return Animal. S.NO - 6 is Largest but ...
- 7 years ago
This will give you the highest value:
Highest Value = LOOKUPVALUE('Table'[Description],'Table'[S.NO],CALCULATE(MAX('Table'[S.NO]), 'Table'[Description] <>""))I
It also works when you have multiple categories. Image below:
themistoklis
7 years agoCommunity Champion
This will give you the highest value:
Highest Value = LOOKUPVALUE('Table'[Description],'Table'[S.NO],CALCULATE(MAX('Table'[S.NO]), 'Table'[Description] <>""))I
It also works when you have multiple categories. Image below: