Is there a working way of adding list items with a hyper link using the add list items activity? I am trying to use the add list item activity to add a datable, but there is one column that is not strings but hyperlinks.
Hello @Alfred
You need to create the dictionary for the hyperlinks, please find the below steps for more information
–>Create a dictionary** to store your field names and values.
–>Include the hyperlink** in the correct format.
–>Use the Add List Item activity** to push the data to your SharePoint list.
Add list item example:
Prop Dictionary: New Dictionary(Of String, Object) From {{“Title”,“HR4”},
{“TestNumber”,4},
{“TestHyperlink”,“https://www.test4.com”}
}