i got the above error while trying to extract data from “acme” website & copy to data table…
Any help
1 Like
Hello,
If you are looping through one datatable, you shouldn’t add rows/columns to the same datatable. That’s when this error comes. You can clone and store the original datatable to a new one using datatable.Clone() and modify the new one.
Hope this helps.
Thanks!
Athira
Hey @Kavitha_Vishnu
In the for-each source prop, Just use the statement as below…
dt.Copy
Hope this helps.
Thanks
#nK