Hi everybody,
I haven't seen a solution to this specific question.
My scenario:

A freight is a collection that contains a maximum of 2 items. Users can add items to the freight and can order the freight.
The collection 'Freight' contains:
- Items: Item_dropdown_3.Selected.Value; (The item dropdown)
- CubicM: CubicM.Text; (The Cubic M text input that can only be a number)
- Bunker: Bunker_dropdown_3.Selected.Title (The bunker dropdown)
When the user presses the order button, the collection and other items get patched to a sharepoint list.
I use First(Freight).Item to specify the first item.
And I use First(Freight).CubicM to specify the amount of Cubic meters for the first item.
The problem:
The CubicM (cubic meters) column in the sharepoint list is a Record type. But the CubicM column in my collection is a Text type.
Is there any way to convert First(Freight).CubicM to a Record? Or change the CubicM: CubicM.Text in the collection to a Record type?
Thanks a lot