
powerapps - Power Apps Items Not In Collection - Stack Overflow
Oct 17, 2024 · How do I find records in a table that are NOT in a collection? Filter(Requirements, ID in RequirementsC.ID) The above is records that are in the collection right? I've tried …
powerapps - How do I use the Attachments form control to …
May 17, 2023 · Below is a sample of what I would like to achieve. Assume the collection filtered the records in the datasource as expected. How would I patch the targeted/filtered record to …
PowerApps: Storing all values from a multiple choice column into a ...
Jul 15, 2024 · I have a choice column in SharePoint which allows multiple values from a separate lookup. When linking this to a PowerApp, is there a way to store all the values into a collection, …
Powerapps: ClearCollect() is not showing all columns filled from ...
Mar 18, 2025 · When I run in Powerapps on a button with a onselect ClearCollect(colPeopleTEST, FirstN(Sort(PER, PERNAME), 30) ) I get the collection …
powerapps - Get value from a record using a combobox - Stack …
Jan 29, 2025 · If the options are known, then you can use a Switch function similar to the code below: Switch( myCombo.Selected.Value, "key1", myRecord.key1, "key2", myRecord.key2 ) If …
I want to add an action for pressing the Enter key (the same as for …
Mar 21, 2024 · I'm creating a project in PowerApps. I need help with one functionality. I want the button and pressing the Enter key on the keyboard to perform the same action. I am a …
powerapps - Power Apps - Filter ComboBoxes - Stack Overflow
Jul 1, 2024 · I have a table in Power Apps with multiple columns of location data. Screenshot below is an example from an Excel file, formatted the same way. I want to have three …
powerapps - Two functions in the same button - Stack Overflow
Mar 2, 2022 · In my PowerApps app I have a button that patch all the data to my table. So far so good. The thing is that in that same button I want to refresh all the fields too but I get the …
powerapps - Microsoft Power Apps Update Property not showing
Jan 20, 2025 · When I make a data card in an edit form, I cannot see the "update" property, so when I submit an edit form, all of the values are submitted as NULL to SQL. My …
powerapps - How do I get a combobox to only list the people in …
Aug 19, 2024 · In PowerApps, I am using a ComboBox so that I can select the people from PeopleList. However, when I use either of these two codes: Items = …