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.
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.
Steps would be as follows
"ColumnName eq 'Not Done'"
)listitem.Fields.Where(function(x) x.DisplayName.Equals("ColumnName"))(0).Value = "Done"
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:
how can i handle this
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