Hi,
When using the Forall(Gal_session.Allitems, it doesn't seem to collect all that is there. There are about 22 rows for it to collect so the gallery can't show that many rows unless you start scrolling down. The problem that is happening is when hitting the submit button it only collet half the data, but if I scroll down and then hit the submit button it then collects the full set. I'm trying to prepare for just in case the user hits the submit button without scrolling down, making sure it collects all the data. Not sure if everyone else has had this problem.
My code is below. There is also an export at the bottom to transfer this data into an excel file, but I don't think that would be the issue since if i scroll down it collects the data fine.
Clear(colUsersession)
;
ForAll(
Gal_session.AllItems,
Collect(
colUsersession,
{
ID_Number: ID_number.Text,
Location: Location.Text,
Access_Clear: Access_clear.Selected.Value,
ID_TAG: ID_TAG.Selected.Value,
EW_Flow: EW_Flow.Selected.Value
}
)
);
ExporttoExcel.Run(JSON(colUsersession,JSONFormat.IgnoreBinaryData))