Hello,
I want to combine two Dataverse tables in Microsoft Power Canvas Apps using a collection. I have these two tables:

I want to show the 'Name' column from the table 'Organisational Units' in the table 'Organisational Positions' and name these column 'Staff'. However, my formula is not working:
ClearCollect(
Collection;
AddColumns(
'Organisational Positions';
"Staff";
LookUp(
'Organisational Units';
'Organisational Unit' = 'Organisational Positions'[@'Organisational Unit']; Name
)
)
)
The "=" Symbol is underlined in red. Can someone help?
Thanks a lot in advance!