Slice with unique rows filtered

Hello, i am new to this, but have experienve with powerapps and google sheets. I have a dataset and to simplify it looks like this:

UserEmailManagerEmail
aaad111
aaa222
aaa222
bbb222
bbb222

I need to filter the slice so it only shows distinct UserEmails belonging to 222

in this case

aaa
bbb

I find this easier in SQL than in appsheets.

ArturasF_0-1710760249396.png

FILTER gives me similar results

1 5 52
5 REPLIES 5


@ArturasF wrote:

in this case

aaa
bbb


 

Can you give another example ? i didn't get properly why aaad is not there and why you don't want to include it 

i only need data rows that belong to manager 222. so it is filtering on manager, and also on top - only unique column's rows.

Your slice filter should just be:

USEREMAIL() = [ManagerEmail]

That leaves the duplicates. How to get rid of duplicates too? Maybe a virtual column..

Maybe try the following instead:

[keycolumn] = MINROW("OfficialApps", "_ROWNUMBER", [UserEmail] = USEREMAIL())
Top Labels in this Space