Filtering an enum list

So I have an enum list which I want to populate from a table of personality traits. The personality traits table has a corresponding contactid that is a reference to a Contact table. However, I want the user to enter several new traits in the personality trait table for themselves and then choose the top 3 traits. So I have a field in the Contact table which is an enum list that is connected to the personality trait table; however, it brings back all the personality traits for everyone instead of just the person whose record Iโ€™m on. How can I filter the list to only see that userโ€™s personality traits for them to choose the top 3? I tried basing the data validity on a slice but it didnโ€™t workโ€ฆdonโ€™t know if Iโ€™m thinking about this all wrong. I also tried doing a โ€œREF_ROWSโ€ function in the data validity but it only brings back the ID because it has to link to the ID. Any help appreciated.

Solved Solved
0 7 2,859
1 ACCEPTED SOLUTION

Try something like the following as the Valid If for the Floor column:

FILTER(
  "table",
  AND(
    ISNOTBLANK([column]),
    ([column] = [_THISROW].[Inwestycja])
  )
)

replacing table with the name of the table referenced by the Floor column, and column (twice) with the name of the column in that referenced table that would match the value in the Inwestycja column of the Assets table.

View solution in original post

7 REPLIES 7
Top Labels in this Space