Hello,
I have an application with 2 sharepoint lists.
List_Client
List_Neads
I have several screen, where I used several gallery with different filters.
I would like to select an item from a gallery, I can redirect to a single screen form NEADZ details
Ex: Gall_list_Client1 >> Scr_detail_Neadz
Gall_List_Client2 >> Scr_detail_Neadz
Do I have to change my form formula from Scr_detail_Neadz (= Gall_List_Client1.selected)
Or do I have to complete the formula of on select Gall_list_Client2?
Thanks for your feedback !
Solved! Go to Solution.
Hi @iAm_ManCat ,
Thanks, I found an other solution 🙂
So you have a variable changed with the OnSelect before you Navigate:
Set(FormSelected; gall_list_client1.selected);; navigate....
and for the other gallery:
Set(FormSelected, gall_list_client2.selected);; naviagate...
Items = FormSelected
Thanks 🙂
I would have an extra variable control it.
So you have a variable changed with the OnSelect before you Navigate:
Set(FormSelected, "1")
and for the other gallery:
Set(FormSelected, "2")
Then in your detail form(Scr_detail_Neadz), you have
Items =
If( FormSelected="1", Gall_List_Client1.selected, FormSelected="2", Gall_List_Client2.selected )
Could you try that and let me know if that works for you?
Thanks,
ManCat
Hi @iAm_ManCat ,
Thanks, I found an other solution 🙂
So you have a variable changed with the OnSelect before you Navigate:
Set(FormSelected; gall_list_client1.selected);; navigate....
and for the other gallery:
Set(FormSelected, gall_list_client2.selected);; naviagate...
Items = FormSelected
Thanks 🙂
Excellent! Glad I could help you on your way towards your solution!
User | Count |
---|---|
137 | |
127 | |
75 | |
72 | |
69 |
User | Count |
---|---|
220 | |
135 | |
78 | |
58 | |
54 |