Hi, I have a question because I'm setting a value in combobox based on datacardvalue19.text. And I do this by writing to the combobox defalutselecteditems property of this function:
If(StartsWith(DataCardValue19.Text,"V") || DataCardValue19.Text = "NA" || DataCardValue19.Text = "NF",{Value: "Ves"},IsMatch(DataCardValue19.Text, "Sub", Contains) || IsMatch(DataCardValue19.Text, "sub", Contains) || IsMatch(DataCardValue19.Text, "SUB", Contains),{Value: "Submi"}, StartsWith(DataCardValue19.Text,"IM") || DataCardValue19.Text = "M",{Value: "Mag"},DataCardValue19.Text<>Blank(), {Value: "Sem" })
value changes to combox but does not write to the dataverse, when i click on SubmitForm.
Please help @RandyHayes