I have a collection with a column named "Dye Date".
I corrected the sharepoint list column from "Dye Date" to "Due Date", but the apps still works with the collection column "Dye Date". How can I update the collection column name ?
For instance, it's used here :
UpdateIf(
colGridUpdates,
ID = ThisItem.ID,
{
Titre: txtTitle.Value,
Description: dpDescription.Value,
'Due Date': dpDueDate.SelectedDate, // Why does it work here ?
Priority: {Value: dpPriority.Selected.Value}
}
)
Patch(
Tasks,
ShowColumns(
colGridUpdates,
"Priority",
"Title",
"Description",
"DyeDate", // why I have to use the old name here ?
"ProjectLookup",
"ID"
)
);