Hi @Bingqiling - I do not know what a "noti" field is, but I assume it is the name of a People field in your custom Dataverse table.
It would not be possible to enter a users name into a Combo Box as free text for example, because the field type is expecting a record. A record includes multiple attributes and some of those attributes are mandatory (internal e-mail address, system user id). This is the reason search is required in order to select the correct record.
If you want to enter a specific user, you can simply hardcode the email address of the specific user with e.g.:
If(
Form1.Mode = FormMode.New, //change Form1 to your Form name
First(
Filter(
Users,
'Primary Email' = "imran.khan@microsoft.com"
)
),
Parent.Default
)
Alternatively and depending on what you're trying to do, you can create a variable and then supply the variable to the DefaultSelectedItems property:
Set(
varSpecificUser,
First(
Filter(
Users,
'Primary Email' = "imranami@imranamikhan.onmicrosoft.com"
)
)
)
If(
Form3.Mode = FormMode.New,
varSpecificUser,
Parent.Default
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan