web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Gallery .selected and ...
Power Apps
Answered

Gallery .selected and Set(var, ThisItem) not working?

(1) ShareShare
ReportReport
Posted on by 66

Hello!

 

I've been doing the Gallery.selected and set(var,ThisItem) for most of my implementations but for this one project that I have, it doesn't seem to work. My objective is to be able to edit the selected item in the edit screen. I passed the Gallery.Selected data to a variable (see below my steps)

 

  1. Main Menu Screen

    001 - Main Menu.png

     

  2. Details Screen

    Note here that I created a Gallery to list down the Selected item and it is displaying correctly (I only displayed the ID and name just to test it ou)
    002 - Details Screen.png

     

  3. Edit Screen

    Note here as well that the Edit SYS-1002 Test with Integrations is working but doesn't seem to get the form data
    003 - Edit Screen.png

     
    Even if the label was able to get the data, the Form doesn't. Also, my Form is in Edit mode. Not sure if it should be in New mode, but otherwise, let me know.

 

Hope someone can chime in on this concern. Thanks!

Categories:
I have the same question (0)
  • WarrenBelz Profile Picture
    154,797 Most Valuable Professional on at

    Hello @hexarthrius ,

    I have had some interesting issues in the past trying to use a variable as the source of a data set which I then want to interact directly with the data source or refer to it as you are for another set.

    This does probably not answer your question, but as the source of all my selection galleries are all collections, I always use

    Lookup(DataSource, ID = Gallery.Selected.ID)

    for the Item of the form as you are then placing the actual record on the form for reference. I am sure others may have something to contribute as well.

     

    I will tag a few of my knowledgeable colleagues @mdevaney , @Anonymous and @PowerAddict 

  • hexarthrius Profile Picture
    66 on at

    Hi @WarrenBelz,

     

    I appreciate the response and will await other people's feedback on this as well. It's just that I wonder what is different on what I do here now against the other apps I made with the same logic. Also, based on your code snippet, I assume that's not yet the full code to get the record since it's just ID, right? It's like you're making a collection and looking up the ID to reference the collection?

     

     

  • WarrenBelz Profile Picture
    154,797 Most Valuable Professional on at

    Yes @hexarthrius ,

    I do all my filtering, sorting and "distincting" for my initial gallery and also all DropDown/ComboBox content in a bunch of Collections at App OnStart. I am fortunate that we do not require any working sets over 2000 items (larger sets are filtered with delegable queries), so all delegation issues instantly disappear, meaning Date, Not, In and other problem queries simply work. As well, the dropdown response and gallery search speed is very good.

    The gallery set collected is from the reference list, using ShowColumns to grab only the fields I need to display and together with Concurrent collection loads very fast, even on mobile devices and as you have queried, always includes the ID of the list item. Then for the form I only have to grab one record matching the ID of what is selected in the gallery.

     

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    @WarrenBelz thanks for the tag, I will try to help.

     

    @hexarthrius 

    Two things that I can offer as solutions:

    1. Is the 1st gallery's Items a collection or directly from your data source? If a collection, there maybe some type / data mis-matching going on.

     

    2. And this is what I think is likely happening, your 'Edit' button should explicitly set the form to EditMode even though the default is Edit. At some point it may have been set to NewMode and may still be in that mode? You can check this using a simple label boolean check eg Form1.Mode = FormMode.New in a label

    To explicitly set your Edit button, use EditForm(yourFormName); Navigate(...)

     

    A least likely solution could be that you have removed and added new Form controls (eg added in combo boxes where there were previously textinput fields) and these haven't been setup correctly?

     

    Anyway, try these things and let me know how you get on.

  • v-yutliu-msft Profile Picture
    Microsoft Employee on at

    Hi @hexarthrius ,

    Could you tell me

    1)the gallery's Items in Main Menu Screen?

    2)the form's data source in Edit Screen?

    You need to make sure that these two properties are the same table.

    You need to set the edit form's Item: gblGalSystemsSelected

    Also, set the edit button's OnSelect in Details Screen:

    EditForm(formname in edit screen);Navigate('System Edit Screen')

    //make sure the form's mode is edit

    If the problem still exists, try to set  the edit form's Item:

    Lookup(DataSource, ID = gblGalSystemsSelected.ID)
    //filter the item that has the var's same ID

     Or you could consider not using variable.

    You could use "Galleryname.Selected" to represent the selected item in the gallery directly.

    Just need to set the the edit form's Item:

    Galleryname.Selected
    //please replace with the gallery name in Main Menu Screen

     

     

    Best regards,

  • timl Profile Picture
    36,774 Super User 2026 Season 1 on at

    Hi @hexarthrius 

    What data source are you using? If you're using SQL Server or the CDS, and if you've enabled explicit column selection, this can result in this type of behaviour.

    image.png

     

  • hexarthrius Profile Picture
    66 on at

    Hi All, 

     

    I have tried suggestions from @Anonymous and @v-yutliu-msft, but it seems that it's doing the same thing even when I set these recommendations on setting it as variable and not setting it as a variable.

     

    Here's a video of how it looks like when going to the edit form:

    https://www.screencast.com/t/di6z1vbAm

     

    I also tried the lookup function and while it did get the data when I was editing the formula, simulating it has the same results as the one above. I'm not sure what I'm doing wrong at this point, since I've been doing this setup for my previous apps. 

     

    @timl, my data source is SharePoint. 

  • v-yutliu-msft Profile Picture
    Microsoft Employee on at

    Hi @hexarthrius ,

    Have you set the "edit" button's OnSelect in Details Screen  like this:

    EditForm(formname in edit screen);Navigate('System Edit Screen')

    Please replace with your edit form's name.

    This will make the form's mode to be Edit.

    Also, could you tell me how many records in your sharepoint list?

    Do you have delegation warning, which will lead to some problems too?

    If your problem still exists, could you show me all your settings about the edit form?

     

     

    Best regards,

    Phoebe 

  • Verified answer
    Community Power Platform Member Profile Picture
    Microsoft Employee on at

    @hexarthrius watching that video I think I can see the error. Your form gets the data then gets reset (see pics)

     

    Gets data (approx 8sec mark):

    EditForm_notWorking01.png

     Then gets reset (approx 9sec onwards)

    EditForm_notWorking02.png

     

    My guess is that the OnVisible of the screen is resetting the Form to New mode ... or some other function is doing that. You could also have a check on the Default property of the form to see if that is causing the issue.

     

  • hexarthrius Profile Picture
    66 on at

    @Anonymous that was it! Accepted your solution. I was beginning to think I was crazy! Thanks a lot!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 530

#2
WarrenBelz Profile Picture

WarrenBelz 459 Most Valuable Professional

#3
Haque Profile Picture

Haque 314

Last 30 days Overall leaderboard