Sharepoint update status

Hi Team,

i need to update a row with done status in sharepoint so how can i do this?
as i have query that filter with the not done status so i need the BOT to add done.

@omar_ismail

Steps would be as follows

  1. Get list info
  2. For eqch listm item with filter for not done…(eg:"ColumnName eq 'Not Done'")
  3. Inside loop use assign and update the column value…listitem.Fields.Where(function(x) x.DisplayName.Equals("ColumnName"))(0).Value = "Done"
  4. Use update list item activity and pass the currentitem

Hope this helps

Cheers

Hi @omar_ismail,

Have a look at the sharepoint activities, this will be the easiest way to achieve what you want.
Here is a link you can refer to:

Complete sharepoint activities details can be found here:

image
how can i handle this

@omar_ismail

Thse latest activities work with integration services only…you have to setup ans integration service in orchestrator and use it…if your or hestrator supports it…

Else follow the method mentioned above which would be supported without integration services also

Cheers