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.AllItems with ...
Power Apps
Answered

Gallery.AllItems with ForAll / Collect Question

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

I'm having an issue with a Gallery and saving the items in the Gallery to a collection (or I'm just doing it wrong).  I load a Gallery and filter it based on user selected value. Here you can see there are 3 items in the gallery (confirmed by the count of Gallery.AllItems)

Gallery.png

The Save All button has the following code which is causing an issue:

//Create collection with modified equipment information
Clear(ModifiedCollection);

ForAll(EquipmentGallery_DetailsScreen.AllItems,
 Collect(ModifiedCollection, 
 {
 RequestID: EquipmentGallery_DetailsScreen.Selected.RequestID,
 ID: EquipmentGallery_DetailsScreen.Selected.ID,
 AssetID: EquipmentGallery_DetailsScreen.Selected.AssetIDTextboxInput_DetailsScreen.Text,
 VIN: EquipmentGallery_DetailsScreen.Selected.VINTextboxInput_DetailsScreen.Text,
 Vendor: EquipmentGallery_DetailsScreen.Selected.VendorTextboxInput_DetailsScreen.Text,
 IsPending: !(EquipmentGallery_DetailsScreen.Selected.IsPendingToggle_DetailsScreen.Value),
 FulfilledBy: If( !(EquipmentGallery_DetailsScreen.Selected.IsPendingToggle_DetailsScreen.Value) = false, varCurrentUser.Email),
 FulfilledDate: If( !(EquipmentGallery_DetailsScreen.Selected.IsPendingToggle_DetailsScreen.Value) = false, conDateTime),
 IsAssetIDAssigned: If(IsBlank(EquipmentGallery_DetailsScreen.Selected.AssetID), false, true)
 }
 )
);

I was expecting the ForAll to loop over all the items in the Gallery and add the field values to the collection.  However, this is what I get instead.  The first item in the Gallery added 3 times.

Collections.pngWhat am I doing wrong? How do I save the filtered items in the Gallery to a new collection? Thanks!

Categories:
I have the same question (0)
  • Verified answer
    Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Nevermind, it was a problem between the chair and the keyboard. I copy/pasted the code from the individual save button and I forgot to remove the .selected reference. The correct code is:

     

    orAll(EquipmentGallery_DetailsScreen.AllItems,
     Collect(ModifiedCollection, 
     {
     RequestID: RequestID,
     ID: ID,
     AssetID: AssetIDTextboxInput_DetailsScreen.Text,
     VIN: VINTextboxInput_DetailsScreen.Text,
     Vendor: VendorTextboxInput_DetailsScreen.Text,
     IsPending: !(IsPendingToggle_DetailsScreen.Value),
     FulfilledBy: If( !(IsPendingToggle_DetailsScreen.Value) = false, varCurrentUser.Email),
     FulfilledDate: If( !(IsPendingToggle_DetailsScreen.Value) = false, conDateTime),
     IsAssetIDAssigned: If(IsBlank(AssetID), false, true)
     }
     )
    );
  • MW Profile Picture
    Microsoft Employee on at

    If you ran in the same issue, being unable to load all items in a Gallery, please vote and support this idea: Enable the option to load all items in a Gallery · Community (powerapps.com)

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 534

#2
WarrenBelz Profile Picture

WarrenBelz 416 Most Valuable Professional

#3
Valantis Profile Picture

Valantis 306

Last 30 days Overall leaderboard