How to mark Sharepoint List the status as Completed/In Progress/ Failed etc

Hello Guys

After the bot finishes a certain process, the Bot needs to update specific list items based on the Queue item (in_TransactionItem.specificContent).

I tried using this link but it updated all the items and every field.

How do I put a condition?

Please help

@Chetan_Wagh

  1. First use for each list item and use a filter to update only the iem you need…odata filter will help
  2. now inside the loop update the column you need and then use update item

check this thread to see how to update a sepcific column

filter to be used "fields/ColumnName eq '" + in_Transactionitem.SpecificContent("Name").ToString + "'"

Hope this helps

cheers

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.