Hi @MB ,
Do you want to patch your collection data back to your SP List?
Based on the formula you provided, I think there is something wrong with it. The 'Modified' column ('Created', 'Created By', 'Modified By', ...) in SP list is a System field, which would be populated by SP System automatically. And the 'Modified' column ('Created', 'Created By', 'Modified By', ...) is Read-Only in PowerApps app, we could not specify a value for it manually.
I have made a test on my side, please consider take a try with the following workaround:
1. If you want to patch your MHD collection data as New records into your SP List, please consider modify your formula as below:
ForAll(
MHD,
Patch(
'SPList',
Defaults('SPList'),
{
Column1: MHD[@Column1],
Column2: MHD[@Column2],
Column3: MHD[@Column3],
...
}
)
)
2. If you want to update these records in your SP List using the MHD collection, please modify your formula as below:
ForAll(
MHD,
Patch(
'SPList',
LookUp('SPList', ID = MHD[@ID]),
{
Column1: MHD[@Column1],
Column2: MHD[@Column2],
Column3: MHD[@Column3],
...
}
)
)
Note: You could not specify System fields from SP List within '{}' part of above Patch function.
Please consider take a try with above solution, then check if the issue is solved.
Best regards,