Hi all,
I have a large supply list dropdown that is a Choice field in SharePoint. I needed to not allow 3 items to show on that dropdown because they should only show in another form. I am able to get the dropdown list to not show the 3 items, but in Filtering the choices field, I lose the ability to search the list and then I lose the Input Text Placeholder. Here is the code used for the items field of choices dropdown:
Filter(Choices([@'Supply Receipt Logs'].Supply), And(Not(Id = 37), And(Not(Id = 56), Not(Id = 102))))
Is there a way to filter out the 3 items in choices dropdown while maintaining at least the search function and also the Input text placeholder feature (Not as important)?