IFS contain ... row filter by email

Hello there, I hope all is good

I want to do slice row filter condition

I have driver column which is of type ref to workers table.

I also have inspector column which is of type ref to workers table as well.

 

I have a task column of enumlist value. (contains delivery, inspection .....)

-----

I want to make ifs expression where if task contains for example delivery .. then filter only email of the driver.

 

I  tried this today but did not work

 

IFS( CONTAINS( [Task] , 'Inspection' ) ,

USEREMAIL()=[worker].[Email]

)

 

Solved Solved
0 8 211
1 ACCEPTED SOLUTION

In your case, could it be just as simple as..
IN(
USEREMAIL(),
LIST([Driver].[Email],[Inspector].[Email],[Helper].[Email])
)

View solution in original post

8 REPLIES 8
Top Labels in this Space