Hi,
I have a choice column. In some cases I want to update it with a set of values from a collection I created instead from the original option that comes with that card.
I created a dropdown with the collection and have put it inside the relevant data card.
Then I wrote this in the Update property:
If(
Condition (working),
DataCardValue17.Selected, // the original choice from the original data card combo box (working)
{value: DataCardValue17_2.SelectedText.Value} // what I'm trying to insert from the dropdown with the collection (not working)
)
I also tried:
DataCardValue17_2.Selected in the 3rd line instead.
It gives me a success message but in SharePoint the record for that column is not picked up.
How should I write it correctly?