I need to convert the table into a record in order to save it to SharePoint, is it possible to do this?
For example, I have a table like this:
Name | Value
-----------------------------
FirstItem | FirstValue
SecondItem | SecondValue
ThirdItem | ThirdValue
And I need to turn this list into a record like this:
{
FirstItem: "FirstValue",
SecondItem: "SecondValue",
ThirdItem: "ThirdValue"
}
I spent several days searching and found nothing.
Maybe someone did this?