I have a field in a form that populates based on the name selected from a drop down in the form, This is linked to sharepoint list and will look up if the first and last name are the same it will provided the employee number, job title and other information kept in this SharePoint list called Employee List
At the moment it works with the following on each text box i am displaying information for, below is for the resource number
LookUp(
'Employee List_1',
First_Name = ComboBox1_1.Selected.First_Name &&
Last_Name = ComboBox1_1.Selected.Last_Name
, Resource_No)
We have added an additional field in the Employee list called Termination Date, I would like to only display if the termination date is Blank or empty.
I have done this on the Full Name field
Filter('Employee List_1', Not(IsBlank(Termination_Date)))
This work but its stopping the search function from working!