cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Qlinox
Frequent Visitor

Nested Filter on 2 table Dataverse

Hi

 

I have created a small internal project management tool where I have a master table with all project and a table with sub task status. In power apps I would like a filter there is looking in both table and filter a gallery to only show the ongoing project and not startet projects.

Master Table

# ID

#Project name

 

Job Status

# ID

# Master Lookup

# Trade type (Choices field)

# Name

# project Status (Choice field, called Method/PA Status)

# Date

 

I tried this, but it doesn't seams to work.

Filter(Master, ID = ShowColumns(Filter('Job Status', 'Project Status' = 'Method/PA Status'.'On Going'), 'Master Lookup'))
 
Hope you can see where I want to go, but i cant figur this one out my self, and could not found any solution there fit what i want to do in this forum.
1 ACCEPTED SOLUTION

Accepted Solutions
Qlinox
Frequent Visitor

Hi @anandm08 

 

Update to my issue.

I found a solution, it is not pretty but works.

 

1. Create a formula column in my status table, there copied the Master ID from  table on the lookup column.

2. Used a combobox to contain data from status table and sat the multi select to true.

3. Sat the defaultitems with a Filter, there selected all found Onging and Not started jobs.

4. Sat my gallery filter to compare the Master ID with selected items in the combobox on the formula master id column.
This works and also give some flexibility where I can change the selected items in the combobox. 

 

If there is anyone else there have a better method let me know 🙂

View solution in original post

7 REPLIES 7
anandm08
Memorable Member
Memorable Member

hi @Qlinox ,

try this code:

Filter(Master, ID in ShowColumns(Filter('Job Status', 'Project Status'.Value = "On Going"), 'Master Lookup'))

Hi @anandm08

 

sorry for the delayed answer.

I tried out your solution but it is the same

It seems like it will not allow me to use nested filter in this way.

If I test out this filter in a gallery like this it works: Filter('Job Status', 'Project Status' = 'Method/PA Status'.'On Going)

hi @Qlinox ,

If using nested filters isn't working directly in Power Apps, we can take an alternative approach by creating a collection to hold the filtered IDs from the Job Status table and then use that collection to filter the Master table

First, create the collection in the OnStart property of the app or in the OnVisible property of the screen where the gallery is located:

 

ClearCollect(OngoingProjects, ShowColumns(Filter('Job Status', 'Project Status'.Value = "On Going"), 'Master Lookup'))

 

Then, use this collection to filter the Master table in the gallery’s Items property:

 

Filter(Master, ID in OngoingProjects)

 

This approach avoids nested filters directly in the gallery's Items property and uses a collection to manage the filtered IDs instead.

 

Hi @anandm08 

 

Thanks for your time, but i'm keeping running in to issue.
It seems that Showcolumns on a related table doesn't seems to work, Im getting no result in my collection when ref the Master lookup.
If I remove the showcollums I am getting the right result collected.

 

 

Qlinox
Frequent Visitor

Hi @anandm08 

 

Update to my issue.

I found a solution, it is not pretty but works.

 

1. Create a formula column in my status table, there copied the Master ID from  table on the lookup column.

2. Used a combobox to contain data from status table and sat the multi select to true.

3. Sat the defaultitems with a Filter, there selected all found Onging and Not started jobs.

4. Sat my gallery filter to compare the Master ID with selected items in the combobox on the formula master id column.
This works and also give some flexibility where I can change the selected items in the combobox. 

 

If there is anyone else there have a better method let me know 🙂

Kellboy2243
Frequent Visitor

Hi @Qlinox 

 

Issue Summary:

You need to filter a gallery in PowerApps to show only ongoing projects by combining data from two Dataverse tables: a Master table and a Job Status table. The goal is to display projects from the Master table that have a status of "On Going" in the Job Status table.

 

Solution Steps:

  1. Identify Relationships:

    • Ensure that the Master Lookup in the Job Status table properly references the ID of the Master table.
  2. Use Nested Filters:

    • Filter the Job Status table to find entries with the "On Going" status.
    • Extract the Master Lookup values from the filtered Job Status entries.
    • Use these values to filter the Master table.

Example Code:

Here's how you can achieve this in PowerApps using nested Filter and LookUp functions:

  1. Filter the Job Status Table:

    • First, filter the Job Status table to find all entries with a status of "On Going".

 

// Filter Job Status to get IDs of ongoing projects
ClearCollect(
    OngoingProjects,
    Filter('Job Status', 'Project Status' = "On Going")
)

 

 

    2. Filter the Master Table Using the Extracted IDs:

  • Use the collected OngoingProjects to filter the Master table.

 

// Filter Master table based on IDs in OngoingProjects
Filter(
    Master,
    ID in OngoingProjects.MasterLookup
)

 

Detailed Steps:

  1. Step 1: Filtering Job Status Table:

    • Use ClearCollect to create a collection of ongoing projects.

 

 

ClearCollect(
    OngoingProjects,
    Filter('Job Status', 'Project Status' = "On Going")
)

 

Step 2: Filtering Master Table:

  • Use the OngoingProjects collection to filter the Master table.

 

Filter(
    Master,
    ID in OngoingProjects.MasterLookup
)

 

Final Combined Code:

You can put the combined logic directly in the Items property of the gallery that is supposed to show the ongoing projects:

 

Filter(
    Master,
    ID in Filter('Job Status', 'Project Status' = "On Going').MasterLookup
)

 

Explanation:

  1. Filter('Job Status', 'Project Status' = "On Going"):

    • This filters the Job Status table to only include rows where the Project Status is "On Going".
  2. MasterLookup:

    • The MasterLookup contains the IDs from the Master table corresponding to the ongoing projects.
  3. Filter(Master, ID in ...):

    • This filters the Master table to include only the projects whose IDs are present in the filtered Job Status table.

Additional Tips:

  • Ensure that your data connections are correctly set up in PowerApps.
  • Verify that the Master Lookup field in the Job Status table is correctly configured to reference the Master table's IDs.

By following these steps, you should be able to filter your gallery to display only the ongoing projects from the Master table. Please mark this as a solution if this helps you resolve your query

Hi @Kellboy2243

 

I tried your solution, but running in the same issue, as earlier that I am not allowed to go the full patch down in the lookup column, and therefore cannot select the Guid column.

I tried this formula:

Qlinox_0-1720423853704.png

It seams that power apps do not like nested filters and you need some sort of handler in between where it can store the result.

 

I found an working method I also shared, and think i will go with that one for now.

 

Thanks for your input, it's definitely something I can use later.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

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!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

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

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

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.    

Updates to Transitions in the Power Platform Communities

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