values ​​from another column enum list

Good day
if I have a [Table_1], with three columns:
*id,*column_1,*column_2
and in a field type enumlist *Permissions, from [Table_2] in which I select values ​​that come from *Column_2...... Table_1[Column_2]

How could I bring in another physical or virtual field, a list of the values ​​of *Column_1 that coincide with the ones I just chose?
Something like a lookup, but with more than one element.
Thank you.

Solved Solved
0 3 114
1 ACCEPTED SOLUTION

SELECT(
  Table_1[Column_2],
  IN([Column_1], [_THISROW].[permissions])
)

View solution in original post

3 REPLIES 3


Thanks for answering

What I want is to generate a list in another column (either physical or virtual), of the fields of [Column_2], depending on what I enter in [Permissions].
Attached image of what I'm looking for (highlighted in yellow)

jdaf_2412_0-1651519928588.png

jdaf_2412_1-1651519974586.png

 

 

SELECT(
  Table_1[Column_2],
  IN([Column_1], [_THISROW].[permissions])
)
Top Labels in this Space