Hi Alice,
So my CSV file contains a number of records as such:
[CODE]
"Referee","Name","Number","BagNo","Device","SIM","ID1","ID2","DispatchedDateTime","ConsignmentNo","ProductCode"
"Bob Jones","PARK AVENUE","OUT-12345 IN-54321","","Device1","","12345678910","987656789","8/6/2020 9:55:52 AM","12345432123454","ABC"
[/CODE]
The above is exactly as it would appear (quotes and all) which would be picked up from a file (which could be 150 records long or a lot more!). The routine picks up the data, puts it into JSON format, and then "for each" would run and extract the data then log it, so for example with the above CSV:
CSV > JSON > Add item to Sharepoint List "List 1"
[CODE]
List 1 - Field Referee - Bob Jones
List 1 - Field Name - Park Avenue
List 1 - Field Number- OUT-12345 IN-54321
List 1 - Field Bag Number - <blank>
List 1 - Field Device - Device1
List 1 - Field SIM - <blank>
List 1 - Field ID1 - 1.234567E+14
List 1 - Field ID2 - 987656789
List 1 - Field DespatchedDateTime - 8/6/2020 9:55:52 AM
List 1 - Field ConsignmentNumber 1.23454321E+14
List 1 - Field ProductCode - ABC
The "E+" and the full number being converted to a decimal is an unexpected result.