Hi @Anonymous ,
Other than the extra semicolon, I would like to ask: what column type is that User column, Text or Person? Since I found that you are using a combo box to select a user name, but use TextInput.Text as the user name instead, which made me confused.
If the User column is a Text type column, then you could modify that "Usuario: TextInput.Text" part in the formula to " Usuario: Combo_usuarios.Selected.'Full Name' "
If the User column is a Person type column, then you will need to modify it to:
Usuario: {'@odata.type':
"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Combo_usuarios.Selected.Email,
Department: Combo_usuarios.Selected.Department,
DisplayName: Combo_usuarios.Selected.DisplayName,
Email: Combo_usuarios.Selected.Email,
JobTitle: "",
Picture: ""
}
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.