Hi
I have a collection that gets all RefIDProj from an user.
It's showwing RefIDProj, Busca (email from user) and it's showing all other columns from user. Is that possible to show only email?
Collect(MyPeople; AddColumns(Filter(ProjEquipe;Integrante = Lower(ThisItem.Mail)).RefIDProj;"Busca";Lower(ThisItem.Mail))
where: ProjEquipe - sharepoint list with RefIDProj and user of project
RefIDProj Integrante
1 alessandramacedo@xxxx.com
2 raphael@xxxx.com
3 mario@xxx.com
And I need to then collect from another list all data form projects that has same RefIDProj from this collection.
Is that possible?
Sharepoint list = ProjProjetos
IDProj(same as RefIDProj) ProjectName Description
1 Project1 DProject1
2 Project1 DProject2
3 Project3 DProject3
Collection MyPeople
RefIDProj Integrante ProjectName Description
1 alessandramacedo@xxxx.com Project1 DProject1
2 raphael@xxxx.com Project2 DProject2
3 mario@xxx.com Project3 DProject3
Thanks in advance