If you have a choice column in SharePoint, where you have enabled “Allow Fill-in values”,then Power Apps will not respect that setting. For that to work you need to update the Datacard for the column to use the search text as input if nothing else is selected in the choice list.

To get this to work, you need to:

  1. Go to the app and find the dataCard og your Choice column. Here you need to set the Update property to: (On my demo, the card is called “DataCardValue2”)

If(
!IsBlank(DataCardValue2.SearchText),
{Value:DataCardValue2.SearchText},
DataCardValue2.Selected
)

The choice column with the “Allow Fill-in” option set

The update code in Power Apps Form


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.