I have a powerapp that has a list setup to lookup items for a column. My user wants to delete one item but it will remove the history from the records already submitted. So I am trying to see if i can filter out the ones they do not want to display in the combobox but i am not sure what operator to use to NOT show an item.
current datacard is setup with items formula: Choices('ListA'.'Item Type')
I thought i could change it to formula: Filter(Choices('ListaA'.'Item Type'), Value !="Itemchoice2")
I get a blank return from this.
What is the best way to proceed to get this to not display the item in the dropdown but doesnt delete the item from the list.