Clearing data in selection
I have a big table with several rows and columns. I want to delete some data from the table.For e.g delete data of row 2 upto column no. 10 based on some criteria. But, keep data in the same row from column 11 intact. The code I have is as follows:cdt = Current Data Table();
cdt << select columns( 1 :: 21 );
cdt << select where(Is Missing(:Name("Record no.")));
I want to delete the data that's bee...