Hi ,
i hava datatable from which i need to remove 04 value from a particular column how i can achieve it.
Please find the screenshot of the column from which i need to remove 04
Hi ,
i hava datatable from which i need to remove 04 value from a particular column how i can achieve it.
Please find the screenshot of the column from which i need to remove 04
Try this
- Assign -> CurrentRow("Name")=CurrentRow("Column").ToString.Replace("04","")
Hi,
Take for each row in datatable
take if condition
Currentrow(“YourColumn”).ToString.Contains(“04”)
take assign activity and use replace function to replace the value with empty.
Thank you
implemented using substring from 2
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.