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 👋