Hello,
I am creating an app that multiple managers will use so they can edit there employees information (Ex: name, office, email, etc). I had made a collections like so
Set(CurrentUser,User());
ClearCollect(TableCollection,
Table({ManagerEmail:"ManagerAEmail@company.com",Table0:Table1},
{ManagerEmail:"ManagerB@company.com",Table0:Table2})) I then set a gallery (Gallery1) to lookup the manager with
Lookup(TableCollection, ManagerEmail=CurrentUser.Email, Table0)
The problem is this cannot be connected to an edit/display form as I have now been informed. However, there is a work around https://powerusers.microsoft.com/t5/General-Discussion/Binding-Collection-to-EditForm-is-not-working/td-p/45498 , but I do not know how to use in my situation because I have multiple tables connected. Can someone help me us this work around or have another approach to this app?