Hello Experts!
I have a Form screen, in which i am having a button to navigate to another screen but with condition, Please suggest amendments in the below syntax:
Both of my conditions are from dropdown value. I want 'If value in Combobox1 is "No" or value in Combobox2 is "Development" then navigate to Screen1 otherwise Navigate to Screen2'
If( ( DataCardValue65.SearchText = "Development" || DataCardValue67.FalseText = "No"), Navigate(Screen1,ScreenTransition.None), Navigate(Screen2,ScreenTransition.None))
The above syntax is not performing any action. Please suggest amendments
Solved! Go to Solution.
Hi @IMathur ,
Try this:
If( ( DataCardValue65.Selected.Value = "Development" || DataCardValue67.Selected.Value = "No"), Navigate(Screen1,ScreenTransition.None), Navigate(Screen2,ScreenTransition.None))
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.
Proud to be a Super User!
Regards,Hi @IMathur ,
Try this:
If( ( DataCardValue65.Selected.Value = "Development" || DataCardValue67.Selected.Value = "No"), Navigate(Screen1,ScreenTransition.None), Navigate(Screen2,ScreenTransition.None))
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.
Proud to be a Super User!
Regards,Hi Krishna,
This is working fine, could you please also let me know the syntax in case of Toggle button?
Hi @IMathur ,
try this:
If( ( DataCardValue65.Selected.Value = "Development" || DataCardValue67.Selected.Value = "No" || ToggleControlName), Navigate(Screen1,ScreenTransition.None), Navigate(Screen2,ScreenTransition.None))
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.
Proud to be a Super User!
Regards,Thanks for sharing
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
219 | |
212 | |
84 | |
57 | |
36 |