I have encountered a issue while dealing with radio button on the edit form.
Created a radio button with the Items list as ["Associate", "Engineer"] on the data card which is in Edit Form.
the below if condition is used in onselect property on the button to navigate to different screen based on the role,
If(Radio1.selected.value="Engineer", Navigate(EngineerScreen), Navigate(AssociateScreen));
This formula is not working on the Edit form, but works fine on by adding a radio button and next button on the screen (not on the form control). Can you please correct me if anything I missed here?