Hi,
I have a view containing information about a user, profiles and other items.
I have a SQL table containing profiles.
I have Gallery1, displaying data related to users and currently applied profiles to the user.
Gallery2 (it is not nested) containing all profiles and I have been trying to display only those profiles which have not been applied to the user.
Wondering if there is a workaround to the delegation warning I am getting on the Not part of the formula, as it does do what I need it to and only displays profiles which are not assigned to the selected user as part of the first gallery, but will come to a big blocker when the data goes over 2,000 records, which it will very soon.
GroupBy(
Search(
Filter(SQLDataSource, Not(Profile exactin Gallery1.AllItems.Profile)),
TextInpSearchProfile.Text,
"Profile"),
"Profile", "ProfileX", "ProfileGroupedDATA")
Any suggestions to over come this?
Thank You