Hello @Gunasekar-Desaiyan
To exclude the row with ID=1 from the final output, you can add a Filter transformation after the Alter Row transformation. In the Filter transformation, you can filter out the row with ID=1 using the following expression:
ID != 1
This expression will keep all the rows except the row with ID=1. You can then connect the Filter transformation to the sink to output the final CSV file without the row with ID=1.
Here's an example of how your Mapping Data Flow can be configured:
- Add a source to read the CSV file.
- Add an Alter Row transformation to delete the row with ID=1.
- Add a Filter transformation to exclude the row with ID=1.
- Connect the Filter transformation to the sink to output the final CSV file. Please note that the Alter Row transformation only marks the row for deletion and does not actually delete the row. The row will be deleted when the data flow is executed in a pipeline.
I hope this helps