I am creating an app that needs to check a user email and the selection value of a radio button to trigger a flow, but am getting the error "Incompatible types for comparison. These types can't be compared: Record, Text" about the '=' for the "Radio2.SelectedText = "Yes" " part of my formula.
Radio2 is a choice field in the connected SharePoint List.
Here is my formula:
If(
User().Email = "adminbb@switch-lighting.co.nz" && Radio2.SelectedText = "Yes", IndividualProductUnleashedImportFile.Run(frmSimpleProdEditing.LastSubmit.ID)
);
How do I fix this error?