Hi experts, I’m trying to copy row from dt 1 to dt2 with only columns Name and Email and skipping blue row. How do I achieve this?
TIA!
Hi experts, I’m trying to copy row from dt 1 to dt2 with only columns Name and Email and skipping blue row. How do I achieve this?
TIA!
Step One:
dt2 = dtOne.DefaultView.ToTable(false, {“Name”,“Email Address”})
Step Two:
filter dt2 and remove empty rows
Hi @sophiey ,
Could you maybe try using Merge Datatable
activity where the Destination is DT2
and property MissingSchemaAction
set to Ignore.
You should then be able to use Filter Datatable
activity on DT2
to remove the empty rows based on the two column values.
hi Aniket, is this extracting row by row? Because I want to extract row by row and convert to different set fo dt.
Yes, Its extracting the data row by row.