cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
sudosaurus
Super User
Super User

Search gallery and match against data in another list

Hello,

 

In my app I have 3 search boxes to search across results in the gallery "DocData".

The gallery is showing items that have been saved to the DocData list from a form on another screen.

Some of the details on the screen are being pulled from another list - "Buildings".

 

For example in the Items property of the gallery, I have the following Fx set - and this allows the user to search against the building name - this will bring back results for any building in the DocData list. 

Search(DocData, BuildingName_SearchInput.Text, "spBuilding")


Ideally we also need to search on the 'Storeys' and 'UPRN' columns from the "Buildings" list so that we can search against the items in the 'DocData' list/gallery but retreive the items that e.g. have a URPN value of '123456' or '5' storeys.

Unsure if this is possible.

sudosaurus_0-1692782524736.png

 



If I helped you solve your problem - please mark my post as a solution and consider giving me a like if you liked my response!

If you're feeling generous you can Buy me a coffee: https://www.buymeacoffee.com/sudosaurus
14 REPLIES 14
Amik
Super User
Super User

Hi @sudosaurus ,

 

As I understand it, you have two SharePoint Lists ("DocData" and "Buildings"). The Items property of the Gallery is DocData, you want to bring in additional fields from the Buildings list.

 

Assuming there is a unique identifier which relates both lists, you can use the Add Columns function to pull that data into the Items property of your Gallery, and then run your Search function against those columns.

 

For example:

 

Search(
    Search(
        Search(
            AddColumns(
                DocData,
                "_Storeys",
                LookUp(
                    'Buildings',
                    'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                    Storeys //your Storeys field
                ),
                "_UPRN",
                LookUp(
                    'Buildings',
                    'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                    UPRN //your Storeys field
                )
            ),
            BuildingName_SearchInput.Text,
            "spBuilding"
        ),
        TextInput_Storeys.Text,
        "_Storeys"
    ),
    TextInput_UPRN.Text,
    "_UPRN"
)

 

If you actually just want to Filter on Storeys and UPRN number based on exact search criteria, then there is no need to use nested Search. For example:

 

Search(
    Filter(
        AddColumns(
            DocData,
            "_Storeys",
            LookUp(
                Buildings,
                'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                Storeys //your Storeys field
            ),
            "_UPRN",
            LookUp(
                Buildings,
                'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                UPRN //your Storeys field'
            )
        ),
        Len(TextInput_storeys.Text) = 0 || _Storeys = TextInput_storeys.Text,
        Len(TextInput_uprn.Text) = 0 || _UPRN = TextInput_uprn.Text
    ),
    BuildingName_SearchInput.Text,
   "spBuilding"
)

 

Note despite the lack of a warning message, the AddColumns function is not delegable.

------------------------------------------------------------------------------------------------------------------------------

 

If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

 

 

 

 

 


------------------------------------------------------------------------------------------------------------------------------


If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

And another version of the 2nd example using the With function. To me at least, this version is more readable to help understand what is going on:

 

 

With(
    {
        _data: AddColumns(
            DocData,
            "_Storeys",
            LookUp(
                Buildings,
                'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                Storeys //your Storeys field
            ),
            "_UPRN",
            LookUp(
                'Sample Issue Data',
                'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                UPRN //your Storeys field'
            )
        )
    },
    Search(
        Filter(
            _data,
            Len(TextInput_storeys.Text) = 0 || _Storeys = TextInput_storeys.Text,
            Len(TextInput_uprn.Text) = 0 || _UPRN = TextInput_uprn.Text
        ),
        BuildingName_SearchInput.Text,
        "spBuilding"
    )
)

 

 

------------------------------------------------------------------------------------------------------------------------------

 

If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

 


------------------------------------------------------------------------------------------------------------------------------


If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

sudosaurus
Super User
Super User

@Amik - just to clarify.

 

I only need to search across items in the 'DocData' gallery. However, it would be useful to also search by storey - since that value isn't included in the DocData list but I have it showing as a text value on the items for easy viewing - it would be useful to be able to type in "7" into the search Storeys box and return the buildings in the DocData list that are related to buildings in the Buildings list that store that property value.



If I helped you solve your problem - please mark my post as a solution and consider giving me a like if you liked my response!

If you're feeling generous you can Buy me a coffee: https://www.buymeacoffee.com/sudosaurus

@sudosaurus - I now remember your app from a different post I shared a solution for, and I understand what you're trying to do.

 

To achieve it, we're using the Add Columns function to "transform" the data to bring the related columns in, and then running additional functions like Search and Filter on top of the output. 

 


------------------------------------------------------------------------------------------------------------------------------


If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

@Amik 

So, this one - correct?

With(
    {
        _data: AddColumns(
            DocData,
            "_Storeys",
            LookUp(
                Buildings,
                'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                Storeys //your Storeys field
            ),
            "_UPRN",
            LookUp(
                'Sample Issue Data',
                'Unique Identifer in Buildings' = 'Unique identifier in DocData',
                UPRN //your Storeys field'
            )
        )
    },
    Search(
        Filter(
            _data,
            Len(TextInput_storeys.Text) = 0 || _PriorityIssue = TextInput_storeys.Text,
            Len(TextInput_uprn.Text) = 0 || _TeamIssue = TextInput_uprn.Text
        ),
        BuildingName_SearchInput.Text,
        "spBuilding"
    )
)


If I helped you solve your problem - please mark my post as a solution and consider giving me a like if you liked my response!

If you're feeling generous you can Buy me a coffee: https://www.buymeacoffee.com/sudosaurus
Amik
Super User
Super User

@sudosaurus you can use any of them.

 

The first suggestion uses a nested Search. This means the Gallery will return any partial match of the search string entered in either of the Storeys and UPRN Text input boxes.

 

The second suggestion returns only data for exact matches based on the entered search string in either of the Storeys and UPRN Text input boxes.

 

The third suggestion is exactly the same as the second, but written in a different (and in my option) a better way.

 

------------------------------------------------------------------------------------------------------------------------------

 

If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

 


------------------------------------------------------------------------------------------------------------------------------


If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

sudosaurus
Super User
Super User

@Amik 

Right, I have started configuring this:

I think I've done it correctly so far

I'm looking up the Buildings list, then linking the Building column to the spBuilding column in the DocData list

Then querying the Storeys column in the Buildings list.

 

And then the same again for UPRN correct?

 

I'm confused as to what _PriotityIssue and _TeamIssue are used for and what Id put in their place??

 

With(
    {
        _data: AddColumns(
            DocData,
            "_Storeys",
            LookUp(
                Buildings,
                Building = spBuilding,
                Storeys // Storeys field
            ),
            "_UPRN",
            LookUp(
                'Buildings',
                Building = 'Building',
                UPRN // UPRN field'
            )
        )
    },
    Search(
        Filter(
            _data,
            Len(Storeys_SearchInput_1) = 0 || _PriorityIssue = TextInput_storeys.Text,
            Len(UPRN_SearchInput_1) = 0 || _TeamIssue = TextInput_uprn.Text
        ),
        BuildingName_SearchInput.Text,
        "spBuilding"
    )
)

Search(DocData, BuildingName_SearchInput_1, "spBuilding")

 

What are these highlighted bits for - PriorityIssue and TeamIssue ??

sudosaurus_0-1692796019450.png

Thanks! 🙂



If I helped you solve your problem - please mark my post as a solution and consider giving me a like if you liked my response!

If you're feeling generous you can Buy me a coffee: https://www.buymeacoffee.com/sudosaurus
Amik
Super User
Super User

Hi @sudosaurus - my fault. Those were random names I forgot to replace with the ones suitable for your scenario. I have updated the earlier post with the correct names.

 


------------------------------------------------------------------------------------------------------------------------------


If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.

If you like my response, please give it a Thumbs Up.

Imran-Ami Khan

sudosaurus
Super User
Super User

@Amik - nearly there

 

This last bit:

        BuildingName_SearchInput.Text,
        "spBuilding"

I get no results when searching against this - but I do for the other two.



If I helped you solve your problem - please mark my post as a solution and consider giving me a like if you liked my response!

If you're feeling generous you can Buy me a coffee: https://www.buymeacoffee.com/sudosaurus

Helpful resources

Announcements

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Top Solution Authors
Top Kudoed Authors
Users online (2,998)