Hi Everyone
In My Landing screen of Power App I have a button
On select of the button :
If(
User().Email in LookUp('Skill Info_GEC', 'Employee Email ID', 'Employee Email ID'),
Navigate('New Search Skill Screen'),
Notify("Please Create a New Account")
)
Basically, What Iam locking for is if the logged in user email is on the SharePoint list, ( Column Employee Email ID )
I want the user to navigate to a different screen or else notify them to please create a new Account
But Iam Facing an error for the look up function called "function lookup has some invalid argumnets"

Could anyone please help me to fix the issue