Hi!
I have a Text Label that display a number. In the "Text" property of that Label, I have a LookUp function to get that number: LookUp(NameOfMyOtherSharePointList, Projet.Value = GalleryMenuProjets.Selected.Projets , Nbparticipants)
"GalleryMenuProject" is a Gallery on the left of the screen. The user select the project they want information about. I have another Gallery displaying informations from "MyOtherSharepointList" that is filtered based on the selected project in "GalleryMenuProjects" and gets me the result in a decreasing order relative to the date of creation.
So I want that Label to show the most recent date in the "Nbparticipants" column.
My LookUp formula work just great. However, it does not update each time I select a different project. It does not keep the old number either, it just get blank. So I added a refresh button beside the Text Label (Refresh(MyOtherSharepointList)) and it works.
However, I would like to find a way that do not require a "refresh button".
I tried to add a command on the "OnSelect" Property of the GalleryMenuProject. There is already a "Set" fonction on that command so it goes like this: Set(SelectedId,ThisItem.ID); Refresh(MyOtherSharepointList) but it does not work.
Any ideas?
Thank you in advance!
Mimas