Filtering ref column by unique label?

I have a column called [DataID] that references a table called “Data”. I have the label of data set to a column called [String] which has duplicate values in multiple rows, but mean different things. How can I filter the key values showing labels to be unqiue? I only want to display unique values from that column, but other rows have the same [String] value. So instead of that ref column showing five “1” values, I’d like it to only show one. How can I do this?

Solved Solved
0 12 1,298
1 ACCEPTED SOLUTION

Try:

FILTER(
  "Data",
  ISBLANK(
    FILTER(
      "Data",
      AND(
        ([_ROWNUMBER] < [_THISROW-1].[_ROWNUMBER]),
        ([String] = [_THISROW-1].[String])
      )
    )
  )
)

See also:

View solution in original post

12 REPLIES 12
Top Labels in this Space