Read CSV into datatable.
Use Add Data Column to add the new columns to the datatable.
For Each Row in Datatable
Assign CurrentRow(“Coverage Name 1”) = Split(CurrentRow(“Coverage Name”).ToString,“;”)(0)
Assign CurrentRow(“Coverage Name 2”) = Split(CurrentRow(“Coverage Name”).ToString,“;”)(1)
etc
That’s the basic, strictly manual way to do it. If you want it to be dynamic and automatically add the correct number of columns (ie there can be a different number of values in Coverage Name) then there are ways to do that, also.