Hi,
I added enterprise keyword column in my form. I want to submit the values i have selected to powerapps.
I use this formula
UploadFilestoSharePointLibrary.Run(
JSON(
colAttachmentGallery;
JSONFormat.IncludeBinaryData
);
If(IsBlank(dpd_keywords.Selected.Label);Text("");Patch('Centre de documentation MPM';
{
'Mots clés d’entreprise': Table(
{
Label: dpd_keywords.Selected.Label;
Path: dpd_keywords.Selected.Path;
TermGuid: dpd_keywords.Selected.TermGuid;
Value: dpd_keywords.Selected.Value;
WssId: dpd_keywords.Selected.WssId
}
)
}
)
I have this warning : value(text) is attented.
the component dpd_keyword is a combobox
* items = Choices([@'Centre de documentation MPM'].TaxKeyword)
* update = dpd_keywords.SelectedItems
Can you help me ?