Forum Discussion
Alta88
Helper IV
4 years agoDuplicate Names in a List
I'm working on a ranking project and I have a list of sales rep names that features names that repeat over and over since each rep has several accounts they've installed. How do I get this table to s...
- Anonymous4 years ago
Hi Alta88 ,
The easiest way is set the field to show the first.
Before
After
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
tamerj1
Community Champion
4 years agoAnother method. Place this measure in the filter pane, select "is not blank" and apply the filter
FilterMeasure =
VAR CurrentRepTable =
CALCULATETABLE ( TableName, ALLEXCEPT ( TableName, TableName[Sales Rep] ) )
VAR MinDate =
MINX ( CurrentRepTable, TableName[Date] )
VAR FilteredTable =
FILTER ( CurrentRepTable, TableName[Date] = MinDate )
RETURN
COUNTROWS ( FilteredTable )
- Alta884 years ago
Helper IV
Apply that filter as a measure?