Get names from another table

hi guys, i need to get some names from another column called tecnico, i need to show these names in a column, but only if column permissao is equal tecnico.
3X_8_7_87709449b461822cd5b83bcc948f8f685e42251e.png

i tried to use ref, but it get all names


and at valid if i get this error: cannoc compare list
3X_c_a_ca8f59a93e80545f9f23def932663d7a260b9b95.png

what can i do?

Solved Solved
0 2 191
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

SELECT(
  whatever-table[Nome],
  ("technico" = [Permissao])
)

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Try:

SELECT(
  whatever-table[Nome],
  ("technico" = [Permissao])
)

Ty, is what i need

Top Labels in this Space