Forum Discussion
Sowmiya
Helper III
7 years agoDAX 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
Community Champion
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: