cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
gdbgdb
New Member

Changing an icon to true/false depending on the outcome of a lookup across two lists

I have one sharepoint list (List1)with

 

QuestionDescription
Q1blah blah
Q2blah blah blah
Q3blah 

 

and another sharepoint list (List2) with

 

NameQ1Q2Q3
BobYesYesYes
JaneYesNoYes

 

What I want to do, in a Gallery view which lists the questions and has the Name set to the User().FullName is to be able to toggle an icon from true to false so that it changes, and the underlying table values also change.

 

So, what I'm looking for is the appropriate Lookup/Filter Combination that does something like

 

1) Filter List 2 to just provide the rows that are relevant to the user, ie Filter(List2, User().FullName=Name) or equivalent

2) Do a Lookup on List 1 to then provide the logic against the appropriate Question

 

Ultimately I want the gallery to show, for a given user, which for Bob above would be

QuestionDescriptionResult (yes/No)
Q1blah blahYes
Q2blah blah blahYes
Q3blah Yes

 

 

Question : what is the formula and combination of lookup/filter/etc. that I need across both lists. I'm going round the bend trying to work this out

 

2 ACCEPTED SOLUTIONS

Accepted Solutions

@gdbgdb 

First, when you import lists into SharePoint it will name your columns like you are seeing.  You cannot rename a column once it is created (you can rename in SharePoint, but the column will always retain the original name.)  The only solution to that is to manually create your list and then import your data into the list once the columns are established and named.

 

For the Switch formula, which Title do you want to look at?  If you want the one from List1, then you need to modify the formula to the following:

AddColumns('List1' As _lst1,
    "Response", 
        With(
            LookUp('List2', Title=User().FullName),
            Switch(_lst1.Title,"A.1",field_1.Value,"aa")
        ))

Otherwise, in the formula you have, it will be looking at the Title in List2.

 

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

The only difference is I change ThisItem.Question to ThisItem.Title as the column header 'Question' didn't come through on the Sharepoint upload.

With({_value: If(ThisItem.Response="Yes", "No", "Yes")},
    With({_record:
        Switch(ThisItem.Title,
            "A.1", {field_1: _value},
            "A.2", {field_2: _value},
            "A.3", {field_3: _value},

etc...

        )},
        Patch(List2
          , LookUp(List2,Title=User().FullName), _record)
    )
)

 

Having saved, published, come out and then back in again the icon toggle doesn't work at all now and text in Sharepoint list is not being updated. 😞

View solution in original post

18 REPLIES 18

@gdbgdb 

You will need to specify the column name in your formula. You cannot refer to a column name by some other means.

 

So, there will be some logic in your formula.

Your Items property on your Gallery would be:

AddColumns(List1,
    "_response", 
        With(LookUp(List2, Name=User().DisplayName),
            Switch(Question,
                "Q1", Q1,
                "Q2", Q2,
                "Q3", Q3
            )
        )
)

This will provide what you need for the Gallery.

 

The reason you have to do it like above is because you have chosen to make your column name based on Row values.  So, you have to "Switch" for each condition.

 

I hope this is helpful for you.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
gdbgdb
New Member

@RandyHayes 

 

Thanks for the advice - I've tried to do this but I have a couple of complications. Firstly, when importing the Sharepoint lists, the columns come through as Title, field_1, field_2 for both lists. This creates a slight headache in that I've had to reverse engineer what the column names actually are as it's not as straightforward as Q1, Q2.

 

So, for List1, the first column ('Title' when imported) is actually "A.1", A.2", etc.. through to "E.7" - about 30 rows in total.

 

For List2, when read in is 'Title', 'field_1', 'field_2', .... 'field_31' 

 

I can almost get the gallery to work, but there an issue in that the Switch statement isn't working. My code is as below where I'm using this to try and get the first line to populate.

 

 

AddColumns('List1',
    "Response", 
        With(
            LookUp('List2', Title=User().FullName),
            Switch(Title,"A.1",field_1.Value,"aa")
        ))

 

 This should add a new column to the List1 list with a field name "Response" where the values are determined by the lookup statement, populated with the appropriate value corresponding to the column in List2, for the User specifed in the List2 Title column. ! 

 

I'm not convinced the Switch formula is right and I can't confirm which 'Title' this is using - the 'Title' in List1 or that in List2. It should be Title in List1 I think, I added the default response "aa" so, all I get just now is "aa" in the Response column for all gallery items, so at least it's returning a value, just not the value I want.

 

Help?

@gdbgdb 

First, when you import lists into SharePoint it will name your columns like you are seeing.  You cannot rename a column once it is created (you can rename in SharePoint, but the column will always retain the original name.)  The only solution to that is to manually create your list and then import your data into the list once the columns are established and named.

 

For the Switch formula, which Title do you want to look at?  If you want the one from List1, then you need to modify the formula to the following:

AddColumns('List1' As _lst1,
    "Response", 
        With(
            LookUp('List2', Title=User().FullName),
            Switch(_lst1.Title,"A.1",field_1.Value,"aa")
        ))

Otherwise, in the formula you have, it will be looking at the Title in List2.

 

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
gdbgdb
New Member

@RandyHayes  - you are indeed a genius. Fantastic. Just what I was looking for 👍

gdbgdb
New Member

I now need to be able to toggle an icon (yes/no) in that gallery view, so I'm looking for the reverse of this now, ie I don't want to update the 'Response' column. I want to update the underlying Sharepoint list.

 

Another way, if user 'Bob' logs in and clicks an icon to toggle from Yes to No (or vice versa) I want to be able to update the entry in the List2 table, that corresponds with the question in List1.

 

Suspect this is a Patch command but I'm having no luck with that either. (yes, I'm a newbie!)

 

Can you advise @RandyHayes ?

@gdbgdb 

You didn't mention what in List2 you want to update or what logic it should have.

I am not sure what you mean about "toggle an icon"...what are you looking to change about the icon?

As for the Update to the List2...it would essentially use a formula such as this:

Patch(List2, LookUp(List2, Title=User().FullName), {column: value})
_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
gdbgdb
New Member

More detail - so the gallery I now have is something like:

NumQuestionDetailCompleteIcon
Q1blah blahblah blahYes👍
Q2blahblahNo👎👍
etc....   👍

 

and this is the output of the revised Gallery including the Response column (which brings data from List2 into List1).

 

What I'd like is for the User to simply click on the icon so that it toggles between "CheckBadge" and "CancelBadge" for Yes and No and in doing so, change the value in List2 for the corresponding question, ie sets the value in the appropriate column of List2 (filtered for the User().FullName)

 

In do so, the Response column of the Gallery updates.

 

Seems convoluted I know, but I'm almost there... it's the {column:value} references I'm struggling with once again. 

 

@gdbgdb 

So let's get to some more detail even beyond that...

What is the structure (columns, etc.) of your List1 and List2 (at least those that are relevant to this solution).

What is the Items property of your Gallery. The Icon formulas, etc.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

@RandyHayes 

More information below

 

List 1 column goes A1.1-A1.7, B1.1-B1.5, etc... Small table, about 31 rows. Held in Sharepoint as central dataset.

 

List1

QuestionDescriptionDetail
A1.1blahblah blah
A1.2blahblah blah blah
A1.3blahblah 

 

List2 is the answers to these questions (Yes/No) answers for each user

 

NameA1.1A1.2etc..
BobYesYesYes
JaneYesNoYes

 

The Gallery now shows, thank to your help

QuestionDescriptionDetailIcon
Q1blah blahBlah(Checkbadge)
Q2blah blah blahBlah(Cancelbadge)
Q3blah  etc..

 

Only property on Icons that's of relevance is:

If(
    ThisItem.Response="Yes",   
    Icon.CheckBadge,
    Icon.CancelBadge
)

 

I'm looking to create the formula on Icon.OnSelect so that when selected the value will toggle between Yes and No. What I want is for the dataset stored in Sharepoint (List2) to be updated when toggled.

 

Hope thats clear(er)

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

Users online (1,296)