asp.net - Filtering Dataset based on similar column values -


i have data in dataset 5 columns (id, col1, col2, col3, col4). have filter rows , separate them main dataset based on similar column values. id column unique. have check data column values in col1, col2, col3 , col4. example have 10 records, 5 of them have same column values, 3 of them have same column values other previous 5 , 2 rows complete different values. should have 4 different datatables 5, 3, 1 , 1 rows respectively. theses datatables can dynamic depending on data.

please suggest me best possible solution.

   dim mydataview dataview = new dataview('your dataset')               mydataview.rowfilter = 'your serch values ' 

try this


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -