Re: Creating a "Sign In Page" using data from an Excel formatted Table
The problem is the way the email address is coming in. I created a similar table. If you you look at the data actually in the table, you will see that Excel is appending mailto: on the front of each email address.

This appears to occur even if you enter the email address as text, not a hyperlink. So the easy solution to this is to simply append this same value to the text entered.
If(Concatenate("mailto:", TextInput1.Text) in Table1.UserID && TextInput2.Text in Table1.UserPassword, Set(GoodPW, true), Set(GoodPW, false))
This results in a successful match (as indicated by the value of GoodPW being set to true) when email1@test.com and Password1 are entered in the two text blocks. I display OK when true and Not OK when false to validate.
