I have an auto filter set on a range of cells in excel, however i want to be able to choose the drop down criteria too.
//Autofilter Cells
IRange fundfilter = prodworkbook.Worksheets["Funds"].Cells["A4:L2000"];
fundfilter.AutoFilter();
The auto filter method adds the filter to the data, but i want to be able to select a criteria of say "Hedge funds" to column C's filter. Is this possible? Language C#, using Spreadsheet gear framework.