Hi,
I am using a SharePoint modern list with a Allow Fill In choice values option selected so that users can enter manual entries. I am using PowerApps connected to this list.
Problem is that, I don't want these manual entries to be shown as a choice values while filling the Form. I see these manual entries are getting stored somewhere and these manually entered choice values are showing up along with the actual choice values given to SP list choice column. My requirement is to show only the actual choice values not the manual entered ones. (Infact I have started working on App that someother team member who has built and rolled off from our company. I found this bug)
I am using following formula's
On Update Property of DataCard:
If( IsBlank(DataCardValue5_1.SearchText), DataCardValue5_1.Selected, If(DataCardValue5_1.SearchText in Choices('Employee Recognition Form'.Category).Value, DataCardValue5_1.Selected, {Value: DataCardValue5_1.SearchText}))
OnSelect Property of DataCardValue:
If( IsBlank(DataCardValue5_1.SearchText), DataCardValue5_1.Selected, If(DataCardValue5_1.SearchText in Choices('Employee Recognition Form'.Category).Value, DataCardValue5_1.Selected, {Value: DataCardValue5_1.SearchText}))
@mdevaney @WarrenBelz @eka24 @KrishnaV