Hi
I have a sharepoint list which contains the ID field and an email field. I want to search the sharepoint list for the ID and check that the email address matches before writing back todays date and time into another field.
this is what I have so far:
Patch('MySharePointList', LookUp('MySharePointList', ID = txt_SignOutID.Text And 'Email Address' = txt_SignOUTEmail.Text & MatchOptions.IgnoreCase),{'EXIT Date and Time': Now()});
Navigate(SplashScreen,ScreenTransition.Fade)
I want to notify the app user if the ID and email do not match and allow them to try again rather than navigating back to the splashscreen. Could someone help with how I can do this? @WarrenBelz maybe?
thanks in advance 🙂