I have a column from an excel file, and I need to perform a split in several columns.
The column has “-” as a separator, for example “V - 47220 - Auxiliary Telecommunications Conductor- 07/02/23”, doing the split, the following columns should appear: V,47220,Auxiliary Telecommunications Conductor,02/ 07/23
To the right, I have more columns, and I don’t need to overwrite the content of the columns to the right, so the split, or its result could appear in the last columns to the right, and the columna to want apply the split is ad_name
The order of the columns is :
id created_time ad_id ad_name adset_id adset_name campaign_id campaign_name form_id form_name is_organic platform nivel_academico first_name last_name email phone_number city
As u have the data in a column with" V - 47220 - Auxiliary Telecommunications Conductor- 07/02/23" format .
Use the read range excel/workbook actvity
use the for reach row in datatable
and get the row item
use split method based on delimiter - on the current item and assign the values to the new columns on the left