Hi @AmyF
Try add columns, see the example below it may help
ClearCollect(CollectionA,
{EmpName: "John Smith 1", Email: "Email1@email.com"},
{EmpName: "John Smith 2", Email: "Email2@email.com"},
{EmpName: "John Smith 3", Email: "Email3@email.com"}
);
ClearCollect(CollectionB,
{EmpName: "John Smith 1", Job: "Supervisor"},
{EmpName: "John Smith 2", Job: "Employee"},
{EmpName: "John Smith 3", Job: "Employee"}
);
ClearCollect(mySolution,
AddColumns(CollectionB,"Email",LookUp(CollectionA,EmpName=CollectionA[@EmpName],Email))
);
if this solves your issue, consider marking the post as solved
KR,