I'm using Excel as a source of a Combobox to send to a Text column in Sharepoint. The way the Items is configured is like this, as I need to filter first the Excel table (and show the full table should nothing be selected in another combobox):
If(
IsBlank(DataCardValue11.Selected.Value);
Contactos; // Si DataCardValue1.Selected.Value está vacÃo, devuelve toda la tabla sin filtro
Filter(Contactos; Departamento = DataCardValue11.Selected.Value)
)
The DefaultSelectedItems property of this combobox is this:
{NameOfColumn: Parent.Default}
Default property of DataCard:
ThisItem.ColumnName
And this does save what you pick to the Sharepoint list, but if you go to edit, it will go blank... And it's extremely weird, as I have an exact thing for another column (excel table that needs to be filtered to a text column), same code same everything, and that one is saving, at first it wasn't but I wasn't using the:
{NameOfColumn: Parent.Default}
Both combobox/datacards have the exact same code so I'm stumped in figuring out what's wrong.
Any ideas D:?!