Solved! Go to Solution.
Hi @Anonymous ,
Thanks for helping me.
Below is collection details.
ClearCollect(
ConflictDateByRoom,
AddColumns(
colConflictDateByRoom,
"ConflictStartDate",
LookUp(ConflictsRoomsWithStartDate,RowNumber=SerialNumber).Value
)
);
ClearCollect(colBOHConflictDateByRoom,
Filter(ConflictDateByRoom,emptySuggestionsReason="OrganizerUnavailable").ConflictStartDate)
i'm using the colBOHConflictDateByRoom collection on the Gallery items. But this gallery on popup window.
Please let me know if you need any more details.
Hi @BKGOUD ,
You need to refresh your data source "colConflictDateByRoom", because your collection "ConflictDateByRoom" is based on it, and then your collection "colBOHConflictDateByRoom" is based on "ConflictDateByRoom", try to add the same clearcollection for "colConflictDateByRoom".
@Anonymous
I have used ClearCollect for all the collections which i have created.
Hi @BKGOUD ,
If your total records are not above the limitation (such as 500), then you can add a button somewhere or the "Onvisible" property of another screen, then add the code for the clearcollection one more time, in another words, you have the same code for the collection in two different place, this is for the system to collect the data again. Then your data will be refreshed.
@Anonymous Thanks for helping me.
I need to pass the gallery selected item(I have button on gallery with multiple records) as a input parameter for the collection to load.