@sapna soni - I believe you can use .net LINQ on it. Collection is .net datatable. Apply filter on it with LINQ and get new datatable as output -
ex -
DataTable selectedTable = tb.AsEnumerable()
.Where(r => r.Field<string>("Modul") == value)
.CopyToDataTable();
------------------------------
Mayank Goyal
------------------------------