I have three SharePoint lists that i want to make up my one collection. Two of the lists have under 200 items in it, the third has over 2000 items. I am able to combine them all OnStart of the app but the load time takes a while. I am trying to speed things up by getting the first two lists added OnStart then OnVisible of the app add in the bigger list to the collection. I get no errors for the code but when i check my collection the new column is not added onVisible.
ClearCollect(
colResumeDB,
Filter(
SortByColumns(
AddColumns(
'Resume Database',
'Employee Name',
Last(
Split(
Name.DisplayName,
" "
)
).Value & ", " & First(
Split(
Name.DisplayName,
" "
)
).Value,
DegreeType,
Concat(
Filter(
'Resume Education',
ResumeID = 'Resume Database'[@ID]
),
'Degree Type'.Value,
" "
),
FieldStudyType,
Concat(
Filter(
'Resume Education',
ResumeID = 'Resume Database'[@ID]
),
'Field of Study'.Value,
" "
),
StudyOther,
Concat(
Filter(
'Resume Education',
ResumeID = 'Resume Database'[@ID]
),
'Study Other',
" "
),
School,
Concat(
Filter(
'Resume Education',
ResumeID = 'Resume Database'[@ID]
),
'University/School',
" "
)
),
"Employee Name",
SortOrder.Ascending
),
EmployeeStatus.Value = "Active"
)
);
OnVisible:
AddColumns(
colResumeDB,
JobTitle,
Concat(
Filter(
'Resume Work History',
ResumeID = 23
),
'Job Title',
" "
)
)
Any help would be appreciated. Thanks