Forum Discussion
TCavins
Helper V
6 years agoDisplay Nth value
I have a table displaying Person, Company and Number of Meetings. I have a measure that counts the number of meetings and that measure is in a filter so the table only displays people that have 10 or...
v-lili6-msft
Community Support
6 years agohi TCavins
For show the date of the 10th meeting, create a measure as below:
10th meetingdate= IF(RANKX(FILTER(ALLSELECTED('Table'),'Table'[Person]=MAX('Table'[Person])),CALCULATE(MAX('Table'[Meeting Date])),,ASC)=2,CALCULATE(MAX('Table'[Meeting Date])))
Regards,
Lin
TCavins
Helper V
6 years agoLin, when I add this to my table that already has Person, Company and a measure for number of meetings, the value is blank for every row.