Hello I have a table named JANUARY, which has a column “Cost Center” and other columns for values to show.
I also have a USER table, having “Email” and their assigned “Cost Center”.
Now I have created a slice where a USER only sees rows having the same Cost Center on JANUARY table - got that working.
But I would Like to ask for help on how to filter my slice to show more than one Cost Center values on JANUARY table, when the assigned Cost Center on USER table is 2 or more.
It’s working for a single value. But when I assign two values (2111 , 2231), no items are shown on my slice I used the following formula too, but still has the same output with your answer @TeeSee1 .
IN([Cost Center], SELECT(User[Cost Center (Old)],[Email]=USEREMAIL()))
If it is of type TEXT then you could use SPLIT([Cost Center (Old)], “,”) to make it into a list. But SPLIT is not ‘reliable’ because the delimiter has to be precise and TEXT editing is usually very unreliable in terms of entering the right string, so I would usually stay away from it.