I have a small bug on one of my expression. basically here is what I’m trying to achieve :
I create a slice from a table and I want the signin user to only see the informations of the other users that have the same department name as him in the department column. all the usermail a sored in a column in the table called workemail .Here is the expression I wrote:
Your issue may be that [department] is a text value while SELECT returns a list of values. Try either using IN instead of equals or else wrapping your SELECT function within an ANY or INDEX function.
I’ve implemented your previous solution but end up not achieving what I expected. again maybe I’m doing it the wrong way but anyway thanks a lot. It helped me learn new ways of doing things with appsheet. Don’t exitate if you have another suggestion. I’m open to that.