Hi Community,
I have the next issue, now, currently we have 5 different screens with specific fields on each one, the user select the item from the Gallery and based on the value of the item it tries to direct for the specific screen, but not works well.
This is the code I used into the Gallery
Set(varRecordProject, ThisItem);
If(title_cmbStageRequest.Text = "2. Evaluate, Select, & Prioritize", ViewForm('Stage 2'), Navigate('Stage 2. Evaluate, Select, & Prioritize',ScreenTransition.Fade), (title_cmbStageRequest.Text = "3. Balance Portfolio"), ViewForm('Stage 3'), Navigate('Stage 3. Balance Portfolio'))
Then I used the next code for the Next button
Select(Parent);
If(title_cmbStageRequest.Text = "2. Evaluate, Select, & Prioritize", Navigate('Stage 2. Evaluate, Select, & Prioritize',ScreenTransition.Fade), (title_cmbStageRequest.Text = "3. Balance Portfolio"), Navigate('Stage 3. Balance Portfolio',ScreenTransition.Fade))
Any help I really appreciate it, thanks in advance.
Kind regards 👋
Solved! Go to Solution.
Try this
Set(varRecordProject, ThisItem);
Switch(
title_cmbStageRequest.Text,
"2. Evaluate, Select, & Prioritize",
ViewForm('Stage 2');
Navigate('Stage 2. Evaluate, Select, & Prioritize',ScreenTransition.Fade),
"3. Balance Portfolio",
ViewForm('Stage 3');
Navigate('Stage 3. Balance Portfolio')
)
Try this
Set(varRecordProject, ThisItem);
Switch(
title_cmbStageRequest.Text,
"2. Evaluate, Select, & Prioritize",
ViewForm('Stage 2');
Navigate('Stage 2. Evaluate, Select, & Prioritize',ScreenTransition.Fade),
"3. Balance Portfolio",
ViewForm('Stage 3');
Navigate('Stage 3. Balance Portfolio')
)
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
200 | |
52 | |
41 | |
39 | |
35 |
User | Count |
---|---|
261 | |
86 | |
71 | |
69 | |
66 |