I want to first check is TextInput2 has Len = 1. If so, I want to check if the value exists in Table1 using a LookUp function. If not, I want to navigate the user to a new screen and reset the form. the line of code would look something like this, I just don't know where to put it / how to implement it.
If(Len(TextInput2) = 1, If(LookUp(Table1, RFID = TextInput2.Text).Email = Blank(), And(Navigate('New User Screen'), ResetForm(EditForm1))))
