Hello everyone, hope you're all are safe.
I'm developing a login screen that takes in emails and passwords from a Sharepoint list as well as a couple of specific emails hardcorded into the formula. It's all working fine but the only issue I'm facing is that the emails are case sensitive. i've tried using IgnoreCase but I think I'm using it incorrectly because it does not work as intended.
Here's my formula
If(!IsBlank(
LookUp( SharePointList,email = TextInput12_3.Text).email)
|| TextInput12_3.Text= "example@email.com" && ignoreCase
|| TextInput12_3.Text= "example@email.com"&& ignoreCase
|| TextInput12_3.Text= "example@email.com"&& ignoreCase
|| TextInput12_3.Text= "example@email.com"&& ignoreCase
|| TextInput12_3.Text= "example@email.com"&& ignoreCase
|| TextInput12_3.Text= "example@email.com" && ignoreCase
|| TextInput12_3.Text= "example@email.com"&& ignoreCase
|| TextInput12_3.Text= "example@email.com"&& ignoreCase
,
Navigate(Screen2), UpdateContext({alert:true}))
Any help would be greatly appreciated!