Hello
I need some help in regards of updating an English (EN) column to Portugese (pt) in a collection.
I have a dropdown: ["en","pt","de"]
I am using the following formular for trying to achieve it:
BUTTON-Property: onSelect

Hello
I need some help in regards of updating an English (EN) column to Portugese (pt) in a collection.
I have a dropdown: ["en","pt","de"]
I am using the following formular for trying to achieve it:
BUTTON-Property: onSelect
Try adding "This Record" in Patch, like:
ForAll(
ShowColumns(
newCollection,
"Number",
"deText"
),
Patch(
newCollection, ThisRecord
{
deText: MicrosoftTranslatorV2.Translate(
Dropdown1.Selected.Value,
deText
)
}
)
);