Unique dropdown on Ref Column

I have a list of jobs that I am referencing from an interview scheduling table. We might have more than one opening for the exact same job ie Full Time cashier at store 1. I need my drop down to only show me one result for FT cashier store 1. Since this is a reference column a unique select wonโ€™t work since the ID is different for the 2 jobs. My current solution uses a view in database to bring in only the oldest job record where X,Y, and Z column match. There are issues with this so I was hoping to just filter down my dropdown list in appsheet.

Solved Solved
0 7 591
1 ACCEPTED SOLUTION

The first Jobs row of each distinct Job Title column value:

FILTER(
  "Jobs",
  (
    [_ROWNUMBER]
    = MIN(
      SELECT(
        Jobs[_ROWNUMBER],
        ([_THISROW-1].[Job Title] = [Job Title])
      )
    )
  )
)

View solution in original post

7 REPLIES 7
Top Labels in this Space