Hi All
im trying to do something using if statement,
such that if both the value are equal only then submit the form else show error. it seems like the formula i have used is correct but it still does not work,
please see the formula
If ( DataCardValue58.Text = Dropdown2.SelectedText.Value, SubmitForm(EditForm4), ErrorMessage53); Navigate(SuccessScreen);
also the screenshot for the value entered
Solved! Go to Solution.
Thanks, Sir, THis helped me a lot, there was a slight change in your answer which i just noticed,
That navigation of the screen was done after the if statement is executed, which I corrected by your guidance. Thanks
Correct Formula:
If ( DataCardValue58.Text = Dropdown2.SelectedText.Value, SubmitForm(EditForm4) & Navigate(SuccessScreen), Notify("The total value is not equal to total float, Please enter correct values"));
Thanks, Sir, THis helped me a lot, there was a slight change in your answer which i just noticed,
That navigation of the screen was done after the if statement is executed, which I corrected by your guidance. Thanks
Correct Formula:
If ( DataCardValue58.Text = Dropdown2.SelectedText.Value, SubmitForm(EditForm4) & Navigate(SuccessScreen), Notify("The total value is not equal to total float, Please enter correct values"));
User | Count |
---|---|
224 | |
100 | |
94 | |
57 | |
31 |
User | Count |
---|---|
281 | |
114 | |
110 | |
63 | |
57 |