Remove data column activity - bug?

Yeah might be… @SenorChang

Delete both remove column activity and try the below expression to keep only the third column in the datatable, use an assign activity

- Assign -> dt_Process = dt_Process.defaultview.ToTable(False, dt_Process.Columns(2).Column name)

Above expression will help to remove first two columns and keep only third column in the datatable.

It works very fast and perfect

Hope it helps!!