This is complicated since I only need the emails of a respective ID
I will give you the example
I make a filter that returns several emails (I need it)
Filter (
"Training of participants",
IdTraining = Value (lblIdTraining.Text)
).Mail
this returns me
exaplemail1@mail.com
exaplemail2@mail.com
exaplemail3@mail.com
so I have a screen in powerapps where I manually register people in a collection
Collect (
List,
{
QR Name: DataManual.name,
EmailQR: DataManual.mail,
PositionQR: DataManual.position,
DepartmentQR: DataManual.department,
AreaQR: DataManual.area
}
)
the name, email, position, department and area are stored in the collection
Now I want to know if there is an email from those I brought in the previous filter in collection
i'm dealing with
Filter (
"Training of participants",
IdTraining = Value (lblIdTraining.Text)
).Mail in List.EmailQR
it gives me the error
cannot use table values ​​in this context
I guess it's because they are a set of elements.