@RandyHayes
I have this app that prefills the user information name and employee id
If(
Form1.Mode = New,
First(
Filter(
CurrentEmployeeOrg,
Lower(Email) = User().Email
)
).EmployeeNumber,
ThisItem.EmpId
)
The issue is that not all of the people who login is having the ID fill it, I have less then 2000 records to lookup from the list CurrentEmployeeOrg
I know you gave me the other example
If(
Form1.Mode = New,
LookUp(
CurrentEmployeeOrg,
Lower(Email) = Lower(DataCardValue2.Selected.DisplayName),
EmployeeNumber
)
)
But i do not know how to apply that to this issue?
Any ideas?