I have an app in which the user needs the ability to take and name several site pictures.
The image gallery is below. In the test there are three images.

The 'Store Collection' button has the following formula -
Collect(
Job_Images_Collection,
{
DisplayName: Photo_Screen_Image_Dropdown.Selected.Value,
Id: Photo_Screen_Image_Dropdown.Selected.Value & ".jpg",
Value: Photo_Screen_Control.Photo,
Image_Description: Photo_Screen_Image_Dropdown.Selected.Value,
Invoice_Type: Photo_Screen_Invoice_Type_Fld.Text,
Location: Photo_Screen_Location_Fld.Text,
Title: Photo_Screen_Location_Fld.Text & " - " & Photo_Screen_Invoice_Type_Fld.Text & " - " &
Photo_Screen_Image_Dropdown.Selected.Value & " - " & Photo_Screen_WO_Number_Fld.Text & " - " &
Photo_Screen_Work_Date_Fld.Text,
Work_Date: Photo_Screen_Work_Date_Fld.SelectedDate,
Work_Order_Number: Photo_Screen_WO_Number_Fld.Text
}
);
Clicking the button only saves the last picture taken rather than all the picture in the Gallery. There should be three entries below but there is only one. What am I missing?
