I have a SharePoint list that contains a list of Customers and the Salesperson assigned to each customer. I want to populate a dropdown with the customers assigned to the current user. I have tried the formula below, but I keep getting the error "The property expects table values, but this rule contains incompatible text values.".
This is the formula I have used.
LookUp('CUSTOMER (TEST)',User().FullName=Salesperson,Name)
I have also tried putting the Saleperson name in the formula like this and get the same error.
LookUp('CUSTOMER (TEST)',"John Doe"=Salesperson,Name)
Here are the columns in my Sharepoint list
Name Address1 Address2 City State Zip Salesperson
Anyone have any idea how I can accomplish this?