I apply a filter to Dataview and after that I need to get the filtered data. before filtering I did:

dvUnloadOpenAccounts.RowFilter = "uso_id = '30640'";
foreach (DataRow row in dvUnloadOpenAccounts.Table.Rows)
{
   HSSFRow dataRow = sheet.CreateRow(rowIndex);
   foreach (DataColumn column in dvUnloadOpenAccounts.Table.Columns)
   {
       dataRow.CreateCell(column.Ordinal).SetCellValue(row[column].ToString());
   }
   rowIndex++;
}

So I need do the same with filtered data.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Assign Filtered DataView to your DataTable then you can iterate to your DataTable

dtbl = dvUnloadOpenAccounts.ToTable();
//Then iterate your DataTable
link|improve this answer
Muhammad Akhtar, thanks – DmitryB May 19 '11 at 6:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.