i want to update SharePoint list status value as completed inside foreach data table. once update per row data just update status like completed
Hi @MD_Farhan1,
Install UiPath.MicrosoftOffice365.Activities package.
SharePoint Scope (your site)
├── For Each Row in DataTable (your DT with ID column)
└── Update List Item
├── List: "YourListName"
├── ListItem: row("ID").ToString
└── Values: New Dictionary(Of String, Object) From {{"Status", "Completed"}}
updates 1 row per iteration. Use exact internal column name for “Status”. Test first!
Hi Arjun if possible to send image with activity.
Hi @MD_Farhan1
Inside the For Each row loop, use Update List Item with the row’s ID and set the Status field to “Completed” so each row updates the corresponding SharePoint item.