Hi,
I have this sharepoint list containg this data:

Employee column is a person or group column(so it contains user name, email etc)
LicenseType is a multiple choice lookup field.
I want to filter to the current user using the app by email and display their licenses in a gallery.
The list is called "AdobePermanentPool".
But i can either put all choices with
Choices([@'AdobePermanentPool'].LicenseType)
But then this doesnt filter to what the actual user has and there i havent found a way to put a filter in this part

so i could filter to a user.
I tried multiple variations such as:
Choices([@'Filter(AdobePermanentPool, Lower(Employee.Email) = Lower(User().Email))'].LicenseType)
or any this similar, without @ or ' etc...
But it doesnt work. There is no way to filter there?
I want each gallery record to be 1 of the license value.
So if 3 Licenses are assigned, the gallery has 3 records.