Hi @ajd116 ,
Assuming your SharePoint list is named 'Employees' and the column indicating active status is named 'ActiveEmployee', you can modify the Items property of your dropdown as follows:
Filter(Employees, ActiveEmployee = true).EmployeeNameColumn
Replace 'EmployeeNameColumn' with the actual name of the column that stores employee names.
Filter(Employees, ActiveEmployee = true) - This part filters the records in the 'Employees' list to include only those where the 'ActiveEmployee' column is set to true.
By using this formula, you ensure that only the names of active employees will be displayed in the dropdown. Adjust the column names accordingly based on your SharePoint list structure.
Thanks!!!
Please consider marking my response as the accepted solution if it successfully resolves your concern. If you found the information beneficial in other aspects, kindly express your appreciation by giving it a thumbs-up.