First off, I am trying to migrate a form to individual fields to edit the record data from a gallery. A column I added to a collection is generating a "Specified Column does not exist" error when trying to Patch.
This is the collection code:
ClearCollect(colGNGApproval,With({StartDate: Today(),EndDate: Today() + 10// change this number},
Filter(AddColumns('Release Dashboard',
"IsChoosen",false),
Date >= StartDate,
Date <= EndDate)
)
);
I used this collection in the gallery I select from and this is the Items code:
Sort(Sort(Sort(
colGNGApproval,
'Go/No-Go'.Value,SortOrder.Descending),
'Rel Mgr'.DisplayName),
Date,SortOrder.Ascending)
Even this simplified Patch statement generate the error "The specified column 'IsChoosen' does not exist":
Patch(
'Release Dashboard',
galGNGApprovalReadiness_2.Selected,
{
'Mock Complete':ddMock_4.SelectedText
}
);
Any suggestions would be appreciated.