Scenario:
There is a SQL Server Table Project_Details with a column Due_Date of type datetime. In Canvas Apps, we have a collection named projectDetailsColl in which we are collecting Projects Details like txtProjectName as Text Input, dtpDueDate as Date Picker. The requirement is to save the values from collection to SQL table.
Below is the code for this:
ForAll(projectDetailsColl,
Patch(Project_Details, Defaults(Project_Details),
{
ProjectName: projectDetailsColl[@ProjectName],
DueDate: DateTimeValue(projectDetailsColl[@DueDate]),
ModifiedBy: User().Email,
ModifiedDate: Today()
})
)