Forum Discussion
LOOKUP within the same table
- 4 years ago
I see, for a measure MAX() or SELECTEDVALUE() should solve the issue:
Hi,
Like you suggested Lookup is the way to go here is my DAX:
I am not sure if I am missing something, but the column returned matches your desired outcome:
I hope this helps to solve your issue and if it does consider accepting this as a solution!
Hi ValtteriN ,
yes, this is pulling the data into table - yet I need to add it into Matrix - for hiding the data on aggregated level in matrix I am using measure that consists of ISFILTERED.
IF(ISFILTERED(Issues[ISSUE_KEY]), SELECTEDVALUE(Issues[ISSUE_CURRENT_TYPE_NAME]), BLANK())
When creating your function as column, Power BI is automatically setting First with options Last, Count & Distinct count. Is there any way how to hide this information (or at least to write your function as measure)?
The main issue with measures is that they cannot work with duplicate values and giving the below error.
- ValtteriN4 years ago
Community Champion
I see, for a measure MAX() or SELECTEDVALUE() should solve the issue: