Hi all!
I have a Power Apps Canvas app with several pages. On page1 I have a Gallery1. The formula for the Gallery's Items is:
Sort(
Filter('Modul-Expert_demo', Expert.Experts_demo = '1_Expert_Dropdown'.Selected.Experts_demo),
Modul_Number,
Ascending
)
In this Gallery I display information in Label. The formula for the Label's Text is:
LookUp(Modules_demo, cr7d9_modules_demoid=ThisItem.Modul.Modules_demo,Modul)
On the page2 I have similar Gallery (with the same formulas) and a Button.
When I press the Button I move to the page1. OnSelect formula is:
Navigate(
'3 NewForm_Scr',
ScreenTransition.Fade,
{MemberForEdit: '4_Member_Dropdown'.Selected.Member,
ModulForEdit: '4_ProfModules_Gallery'.Selected.'4_Title_Module'}
)
I want to save the choice from the Gallery on the page2 and when I move to the page1 I would like to see this choice in the Gallery1. I try to use for this variable "ModulForEdit" and set up in as Default for Gallery1. But it doesn't work.
Could you please help me to find a solution?
Thanks!