We have the following Collection which contain a Type and Table of Email addresses inside Power App formula, with email addresses been hard coded, as follow:-
ClearCollect(
varUserForContracts,
{
Type: "Admin",
Emails: Table(
{UEmail: "app.admin@.org"},
{UEmail: "*****.org"},
{UEmail: ".org"},
{UEmail: "*****.org"},
{UEmail: "app.admin@.org"},
{UEmail: "*****.org"},
{UEmail: ".org"},
{UEmail: "*****.org"},
)
}
);
now instead i created a SharePoint list which include all the above emails:-
so how i can build the same Collection but to populate the table values from the values inside the SharePoint list?
Thanks
