How to prompt an error message for a comboBox people picker in PowerApps?
To prompt an error message for a comboBox peoplePicker in PowerApps if a user manually inputs a name without selecting a choice from the dropdown menu do the following:
- Set the Text property of the  error message  Label  to the error message that you want to show t the user for example "You must choose Name from the dropdown"
- In the visible property of the  error message  Label  set it to this formula 
     If(
    IsBlank(DataCardValue47.Selected),
    If(
        Len(DataCardValue47.SearchText) > 0,
        true,false
    ),
    false)
user manually inputs a name without selecting a choice from the dropdown menu, the error message will appear
