Hi All
My first post on here so if i'm missing any info let me know.
Background – I’m building a Contacts app for our organisation, the data is in 2 sharepoint lists, “Contacts Person” and “Contacts Role”, they therefore have a 1 to many relationship, with each role being linked to the person via an ID. I have a gallery containing the “Contacts Person” data which I then want to filter based upon “lookup” field data in both the “Contacts Person” list and the “Contacts Role” list via a series of dropdown boxes. I have been able to filter on the data from the “Contacts Person” list but not managed to integrate the filter from the “Contacts Role” list.
Sharepoint lists below (Data I want to filter the gallery on are in Bold)
“Contacts Person” List = ID, Title, Surname, Forename, Email, Region, Organisation,
“Contacts Role” List = ID, Person ID, Specialty, School, Job Role, Job Role 2
My current Formula works but only uses “Region” and “Organisation” from the “Contact Person” list, I therefore need to add the filters for “Specialty”, “School”, “Job Role” and “Job Role 2” from the Roles list. Each "Contact Role" filter will need to return the person if any of their job roles contain the selected value)
SortByColumns(
Filter(
'Contacts Person',
IsBlank(CGSearchRegionDropdown.Selected.Title) ||
IsEmpty(CGSearchRegionDropdown.Selected) ||
Region.Value=CGSearchRegionDropdown.Selected.Title,
IsBlank(CGSearchOrganisationDropdown.Selected.Title) ||
IsEmpty(CGSearchOrganisationDropdown.Selected) ||
Organisation.Value =CGSearchOrganisationDropdown.Selected.Title
),
"Surname",Ascending,"Forename",Ascending)
I’ve tried doing it in quite a few ways, but can’t seem to integrate the filter using both sources at once. It seems like something which people would want to do often so I’m hoping someone can help.
Thanks for reading
Ryan
There are a couple ways to go about this depending on the amount of records you have to deal with. Here is one method.
SortByColumns(
Filter(
AddColumns('Contacts Person' As _person,
"_roleInfo", LookUp('Contacts Role', PersonID = _person.ID)
),
(IsBlank(CGSearchRegionDropdown.Selected.Title) || Region.Value = CGSearchRegionDropdown.Selected.Title) &&
(IsBlank(CGSearchOrganisationDropdown.Selected.Title) || Organisation.Value = CGSearchOrganisationDropdown.Selected.Title) &&
(IsBlank(SpecialtyDropdown.Selected.Specialty) || _roleInfo.Specialty = SpeacialtyDropdown.Selected.Specialty) &&
(IsBlank(School.Selected.School) || _roleInfo.School = School.Selected.School) &&
(IsBlank(JobRole1.Selected.JobRole1) || _roleInfo.JobRole1 = JobRole1.Selected.JobRole1) &&
(IsBlank(JobRole1.Selected.JobRole2) || _roleInfo.JobRole2 = JobRole1.Selected.JobRole2)
),
"Surname", Ascending,
"Forename", Ascending
)
I hope this is helpful for you.
Thanks for the speedy reply @RandyHayes
I'm struggling to replicate this unfortunately:-
Can you clarify what _roleInfo should be replaced with if anything, if my understanding is correct, this is simply the title of a new column being added to the table?
Can you clarify what _Person should be replaced with if anything?
Also i'm presuming that in the bottom three filters, the text in red should be title as in the higher 2 filters? (i've obviously replaced the elements in blue with the dropdown box.
(IsBlank(School.Selected.School) || _roleInfo.School = School.Selected.School) &&
I've also been working really hard on the rest of the app to ensure all formulas are delegable, which looking at the formula this wont be, is there a delegable solution you are aware of?
Your help is much appreciated
Many Thanks Ryan
You are correct in @RandyHayes 's elegant solution these (_roleInfo and _Person ) are simply titles of the columns added 🙂
These seem to be the names of dropdowns /combo boxes:
SpecialtyDropdown
School.Selected.School
JobRole1
they are probably whats causing your error as you needed to add the filters for “Specialty”, “School”, “Job Role” and “Job Role 2” . so you will need to add them to your app and ideally call them the same name. these reference 'Contacts Role'
for the second part of your question that depends on your data but based on what you have above it might be. It would just need to match up with the column names in the datasource 'Contacts Role'
@RandyHayes 's solution looks like it will meet your needs it is in fact more elegant than the suggestion i was going to make so i will probably look to do it this way for the future myself. I also tested it my end with dummy data and it worked 🙂
p.s. i edited this reply as you asked something completely different to what i first answered
Signature:
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
Link to the Power Platform Professionals United Kingdom User Group:
So this is what i ended up with in the end, it resulted in no errors or delegation warnings
SortByColumns(
Filter(
AddColumns('Contacts Person'As _Person,
"_roleinfo", LookUp('Contacts Role','ID Person' = _Person.ID)
),
(IsBlank(CGSearchRegionDropdown.Selected.Title) || Region.Value = CGSearchRegionDropdown.Selected.Title) &&
(IsBlank(CGSearchOrganisationDropdown.Selected.Title) || Organisation.Value = CGSearchOrganisationDropdown.Selected.Title) &&
(IsBlank(CGSearchSpecialtyDropdown.Selected.Title) || _roleinfo.Title = CGSearchSpecialtyDropdown.Selected.Title) &&
(IsBlank(CGSearchSchoolDropdown.Selected.Title) || _roleinfo.Title = CGSearchSchoolDropdown.Selected.Title) &&
(IsBlank(CGSearchJobRole1.Selected.Title) || _roleinfo.Title = CGSearchJobRole1.Selected.Title) &&
(IsBlank(CGSearchJobRole2Dropdown.Selected.Title) || _roleinfo.Title = CGSearchJobRole2Dropdown.Selected.Title)
),
"Surname", Ascending,
"Forename", Ascending
However it unfortunately did not work, the Region and Organisation elements worked ok, but the Specialty, School, JobRole1 and JobRole2 elements did not.
It also caused the rest of my app to stop working, presumably because they no longer recognise the selected person within the gallery.
I think i see the problem:
First question in these dropdowns what is the Items?
(IsBlank(CGSearchSpecialtyDropdown.Selected.Title) || _roleinfo.Title = CGSearchSpecialtyDropdown.Selected.Title) && (IsBlank(CGSearchSchoolDropdown.Selected.Title) || _roleinfo.Title = CGSearchSchoolDropdown.Selected.Title) && (IsBlank(CGSearchJobRole1.Selected.Title) || _roleinfo.Title = CGSearchJobRole1.Selected.Title) && (IsBlank(CGSearchJobRole2Dropdown.Selected.Title) || _roleinfo.Title = CGSearchJobRole2Dropdown.Selected.Title)
is it Contacts Role?
if so i think it should not be .Title unless you have done something different to the item in contacts role? let me know what is in there and i can take a look
Signature:
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
Link to the Power Platform Professionals United Kingdom User Group:
Thanks @AJ_Z for helping with @RandyHayes solution
The items in all the dropdowns are derived from separate SharePoint lists (rather than the main 'Contacts Person' list, so all my lists are.
Main Lists:-
Lookup (dropdown) lists:-
In that case try this:
let me know how it goes
SortByColumns(
Filter(
AddColumns('Contacts Person'As _Person,
"_roleinfo", LookUp('Contacts Role','ID Person' = _Person.ID)
),
(IsBlank(CGSearchRegionDropdown.Selected.Title) || Region.Value = CGSearchRegionDropdown.Selected.Title) &&
(IsBlank(CGSearchOrganisationDropdown.Selected.Title) || Organisation.Value = CGSearchOrganisationDropdown.Selected.Title) &&
(IsBlank(CGSearchSpecialtyDropdown.Selected.Title) || _roleinfo.Specialty = CGSearchSpecialtyDropdown.Selected.Title) &&
(IsBlank(CGSearchSchoolDropdown.Selected.Title) || _roleinfo.School = CGSearchSchoolDropdown.Selected.Title) &&
(IsBlank(CGSearchJobRole1.Selected.Title) || _roleinfo.'Job Role' = CGSearchJobRole1.Selected.Title) &&
(IsBlank(CGSearchJobRole2Dropdown.Selected.Title) || _roleinfo.'Job Role 2' = CGSearchJobRole2Dropdown.Selected.Title)
),
"Surname", Ascending,
"Forename", Ascending
Signature:
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
Link to the Power Platform Professionals United Kingdom User Group:
As you and @AJ_Z have been discussing (and I'm replying to your first response here)...the _roleInfo is the name of the column that is created. You would not replace that. Also _Person is the name of the table result of the datasource. Since both lists have ID columns, we need to be specific on the match between the two. The As operator gives us the chance to name the results and thus be specific on which is which. Nothing should change in that part.
The bottom three filters were all suggestions - since I didn't know how you were populating the Items of your dropdowns, it was just an assumption.
Your formula is not delegable only because of the AddColumns function (which is not delegable). Unfortunately, the formula editor will not make you aware that it is not delegable. But why would it be? Everything in PowerApps is restricted by the record limit. AddColumns is not doing any filtering, so there is nothing to delegate. Thus it is just restricted to record limit (record limit and delegation are two different things!)
The solution to making that fully delegable is to provide something to delegate. In that case it would be a filter on the datasource initially. That would be yet to be determined in your scenario. You certainly would have to get the other list record to perform your lookup, but you can change the formula to the following and use the initial list to filter a delegable criteria and then perform the other operations after that.
The formula would look like this:
SortByColumns(
Filter(
AddColumns(
Filter('Contacts Person'As _Person,
(IsBlank(CGSearchRegionDropdown.Selected.Title) || Region.Value = CGSearchRegionDropdown.Selected.Title) &&
(IsBlank(CGSearchOrganisationDropdown.Selected.Title) || Organisation.Value = CGSearchOrganisationDropdown.Selected.Title)
) As _Person,
"_roleinfo", LookUp('Contacts Role','ID Person' = _Person.ID)
),
(IsBlank(CGSearchSpecialtyDropdown.Selected.Title) || _roleinfo.Specialty = CGSearchSpecialtyDropdown.Selected.Title) &&
(IsBlank(CGSearchSchoolDropdown.Selected.Title) || _roleinfo.School = CGSearchSchoolDropdown.Selected.Title) &&
(IsBlank(CGSearchJobRole1.Selected.Title) || _roleinfo.'Job Role' = CGSearchJobRole1.Selected.Title) &&
(IsBlank(CGSearchJobRole2Dropdown.Selected.Title) || _roleinfo.'Job Role 2' = CGSearchJobRole2Dropdown.Selected.Title)
),
"Surname", Ascending,
"Forename", Ascending
)
The above would be delegable. However, like every formula in PowerApps, it is still restricted to the record limit.
What is happening in the above is that we first Filter the Contacts Person list with delegable criteria. That will return a table to which we then AddColumns. At that point delegation is not an issue because the first Filter has already returned delegated results. From this point forward in the formula, delegation is no concern.
By the way, I took the most recent suggested formula from @AJ_Z for the above and modified it. So, not sure if the other points you were working on in it are accurate.
Excellent, it's working, i just had to add to change them to
(IsBlank(CGSearchJobRole2Dropdown.Selected.Title) || _roleinfo.'Job Role 2'.Value = CGSearchJobRole2Dropdown.Selected.Title)
It's pretty slow though and i only have limited amount of test data in at the moment. So depending how it goes when rolled out, i may be back for a less processer intensive solution.
It has however caused all my forms to break. I have a button on each row of the gallery, when pressed this sets a variable Set(VarParentItem,CGGallery.Selected that is then read by the 'item' in the form, and the button takes them too the form. I cant understand why this is now broken? Why is it now unable to store and read what item is selected?
The error being received is "Invalid formula. Expected a value compatible with 'DataSource'."
This is even the case for a form that looks up from a different gallery (albeit contains similar data)
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages