For my Sharepoint list form I have a Text column that Updates from a Combobox that its option come from an Excel table. As of now, the DefaultSelectedItems property looks like this:
If(
!IsBlank(Parent.Default);
LookUp(CustomerExcelTable; ExcelColumn = Parent.Default);
Blank()
)
So this makes it so that it saves whatever was selected when you go to edit. The Update property of this datacard, looks like this:
If(
!IsBlank(ComboBox1.Selected.ExcelColumn);
ComboBox1.Selected.ExcelColumn;
!IsBlank(ComboBox1.SearchText);
ComboBox1.SearchText
)
This code is for using what was written in the combobox should one of the Excel options not be included in what the user wants to input. On another Combobox this Update code Worked no trouble, altough that was a much easier choice column, and in DefaultSelectedItems I put "Parent.Default" (already tried swapping the Blank() with the Parent.Default, and gives an error that a Table value was expected).
The code for that choice column Update combobox looks like this, very similar to last one:
If(
!IsBlank(DataCardValue26.Selected);
DataCardValue26.Selected;
!IsBlank(DataCardValue26.SearchText);
{
Value: DataCardValue26.SearchText
}
)
So mmm Is this fixable? Appreciate your input in advance!