Hi @Anonymous , If Associate is of number type in SP list then try to use below code.
Set(varAssociate,
If(
LookUp(
Appointments,
Associate = Value(Associate_Number.Text)
).Associate = Value(Associate_Number.Text),
true,
false
);
If Associate is single line text then use below code:
Set(varAssociate,
If(
LookUp(
Appointments,
Associate = Associate_Number.Text
).Associate = Associate_Number.Text,
true,
false
);
-----------------------------------------------------------------------------------------------------------------------------
I hope this helps.
Please click Accept as solution ✅ if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs up.👍
Thanks,
ANB