Hi.
I have a Combo Box inside my form that on itens properties I filter the company office365 users. When its used on a newform, its works fine. but when I try to edit a record and call the form as editform, I need it to come with the value of the selected record. So how como I set the default value as parent default?
that's the itens property.
Filter(Office365Users.SearchUserV2({searchTerm:DataCardValue15.SearchText}).value, Country="Brazil", "contoso.com" in Mail)
this is how I set the default value of the text input
If(
Form_frmUser.Mode= FormMode.New
,DataCardValue15.Selected.OfficeLocation
,Parent.Default
)
thats the form as edit mode