officefileapi-devexpress-dot-spreadsheet-dot-autofiltercolumn-dot-applyfiltercriteria-x28-devexpress-dot-spreadsheet-dot-filtervalue-x29.md
Filters data by values.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
void ApplyFilterCriteria(
FilterValue filters
)
Sub ApplyFilterCriteria(
filters As FilterValue
)
| Name | Type | Description |
|---|---|---|
| filters | FilterValue |
A FilterValue object containing values to be used in a filter.
|
This example demonstrates how to use the SheetAutoFilter.Apply method to enable filtering for a cell range and filter data in a column by an array of values.
' Enable filtering for the specified cell range.
Dim range As CellRange = worksheet("B2:E23")
worksheet.AutoFilter.Apply(range)
' Filter the data in the "Product" column by an array of values.
worksheet.AutoFilter.Columns(1).ApplyFilterCriteria(New CellValue() { "Mozzarella di Giovanni", "Gorgonzola Telino"})
// Enable filtering for the specified cell range.
CellRange range = worksheet["B2:E23"];
worksheet.AutoFilter.Apply(range);
// Filter the data in the "Product" column by an array of values.
worksheet.AutoFilter.Columns[1].ApplyFilterCriteria(new CellValue[] { "Mozzarella di Giovanni", "Gorgonzola Telino"});
The following code snippets (auto-collected from DevExpress Examples) contain references to the ApplyFilterCriteria(FilterValue) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
// Filter the data in the "Product" column by a specific value.
worksheet.AutoFilter.Columns[1].ApplyFilterCriteria("Mozzarella di Giovanni");
#endregion #FilterByValue
// Filter the data in the "Product" column by a specific value.
worksheet.AutoFilter.Columns[1].ApplyFilterCriteria("Mozzarella di Giovanni");
#endregion #FilterByValue
// Filter data in the "Product" column by a specific value.
worksheet.AutoFilter.Columns[1].ApplyFilterCriteria("Mozzarella di Giovanni");
#endregion #FilterBySingleValue
winforms-spreadsheet-use-custom-cell-editors/CS/DevAVInvoicing/Form1.cs#L144
storesTable.AutoFilter.Clear();
storesTable.AutoFilter.Columns[1].ApplyFilterCriteria(customerId);
// Select the default store and assign it to the cell G12 on the "Invoice" worksheet.
' Filter the data in the "Product" column by a specific value.
worksheet.AutoFilter.Columns(1).ApplyFilterCriteria("Mozzarella di Giovanni")
' #End Region ' #FilterByValue
' Filter the data in the "Product" column by a specific value.
worksheet.AutoFilter.Columns(1).ApplyFilterCriteria("Mozzarella di Giovanni")
' #End Region ' #FilterByValue
' Filter data in the "Product" column by a specific value.
worksheet.AutoFilter.Columns(1).ApplyFilterCriteria("Mozzarella di Giovanni")
' #End Region ' #FilterBySingleValue
winforms-spreadsheet-use-custom-cell-editors/VB/DevAVInvoicing/Form1.vb#L132
storesTable.AutoFilter.Clear()
storesTable.AutoFilter.Columns(1).ApplyFilterCriteria(customerId)
' Select the default store and assign it to the cell G12 on the "Invoice" worksheet.
See Also