Hi,
I have a screen with combobox for User Picker, where:
Items = Filter(UsuáriosdoOffice365.SearchUserV2({searchTerm:Trim(Self.SearchText);isSearchTermRequired:false}).value;AccountEnabled= true && Not("#EXT" in UserPrincipalName))
I patch the value after set the selected combobox item as Set(varResponsavel;If(IsBlank(varTarefaEscolhida);Lower(Text(DataResponsavel.Selected.Mail));varTarefaEscolhida.Responsavel));;
In Patch , Responsavel: varResponsavel;
After patch I want to send email to task owner.
There is a "responsavel" picked from combobox. But still give error as if no "responsavel" is choosen.
I'm using the formula:
Office365Outlook.SendEmailV2(varResponsavel;
I used same approach in other app and it's ok, I don't now what is wrong here.
Any hint?