Filter a Slice to a Column value from another Table

I would like to filter a Slice where column [Technician] = [Name 1] from another table which contains only one row.

Table = Technician Log , origin of Slice “Technician_Out 1”
[Technician] is Text format.

Table with value to use for the filter = Access
[Name 1] is Text format.

Solved Solved
1 2 1,092
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Either:

IN([Technician], Access[Name 1])

or:

([Technician] = ANY(Access[Name 1]))

See also:



View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Either:

IN([Technician], Access[Name 1])

or:

([Technician] = ANY(Access[Name 1]))

See also:



Thank you Steve. It works well.

Top Labels in this Space