Tagged Questions
The autofilter tag has no wiki summary.
2
votes
1answer
162 views
How to Generate Excel File With Autofilters in PHP?
Okay, here's my dilemma.
I've been working on a Wordpress plugin for Medical Marcom to automatically update his List of US Twitter Doctors. Basically, it provides the ability to create a form where ...
2
votes
2answers
175 views
Excel crashes when renewing auto-filters oncellchange
I use the following code to refresh an autofilter in Excel upon a cell change.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim MySheet As Worksheet
'On Error Resume Next
'Set MySheet = ...
2
votes
1answer
444 views
Is there any Java-Excel library that supports AutoFilter in Excel?
Last time I checked, Apache POI did not support this feature. If you know any solution that does, either free or commercial, please suggest.
1
vote
2answers
71 views
clear cells while preserving Autofilter settings?
I'm writing a script for a worksheet whose cells are populated based on an Access database. I'm trying to clear the contents of the worksheet without removing any Autofilters that the user has set, ...
1
vote
1answer
69 views
XCEED wpf DataGrid Autofilter popup - Disable or hook closing event
I am using exceed wpf grid (version 3.6.10159.15470) and I need either disable auto filter for a column or hook the closing (or closed) event. I searched the API and was not able to found how to ...
1
vote
1answer
305 views
How to remove blank rows when using Excel VBA Autofilter
I have written a macro that searches through workbook and applies an autofilter to any listobjects which have a column named "Code". However, when I apply the filter, it does not filter out the blank ...
1
vote
1answer
80 views
How Do You Subtotal with Autofilter in Excel?
I am currently working on an Excel sheet of list of people working in a company.
The company has multiple teams and multiple positions and I've listed them all in an Excel sheet (I am using Excel ...
1
vote
1answer
241 views
Excel VBA Filtering Issue
Awesome Stackoverflow users,
I am having difficulty with something that seems simple enough to not cause this much trouble. I am trying to filter a given sheet based on a criteria. Here is the code:
...
1
vote
1answer
118 views
ASP.NET AJAX “as you type” functionality
Although this is FAQ i still couldn't find a suitable solution. I'd like to filter out a list (rendered with ListView control placed to UpdatePanel) as user types something in TextBox. This blog post ...
1
vote
4answers
3k views
How can I auto filter a HTML selectlist?
I have a HTML select list with quite a few (1000+) names. I have a javascript in place which will select the first matching name if someone starts typing. This matching looks at the start of the item: ...
0
votes
0answers
11 views
Excel Linked Auto Filters
Maybe this is a programming question or maybe not.
I have two worksheets that have an auto filter on the first 7 columns. I have someone how wants to link the auto filters on those column so that ...
0
votes
1answer
43 views
Sort Autofilter contents - XCeed WPF Datagrid
I am using an Xceed WPF Datagrid in an app. I have enabled Autofilter on one of the columns, but the contents are not sorted. I can't figure out if there is a property or something, a style perhaps, ...
0
votes
2answers
324 views
Excel vba - Get AutoFilter sort criteria and apply on second sheet
I'm trying to see if I can programatically trap an AutoFilter sort event, get the sort criteria and then apply that same sort criteria to an AutoFilter in a second worksheet.
So far it seems as ...
0
votes
1answer
128 views
C# Excel Automation: Retrieving rows after AutoFilter() with SpecialCells() does not seem to work properly
First time poster here :). I'm having the following trouble automating Excel 2010 from a WinForms C# application. My test table looks the following way:
Index Value1 Value2
AAA 2 3 ...
0
votes
1answer
99 views
How to make hidden rows not editable/copiable in VBA?
The macro hides rows. After the rows are hidden, users can copy, edit and delete blocks of cells/rows. When users select the range that contains hidden cells, hidden cells, unfortunately, got selected ...
0
votes
2answers
154 views
Speed up Excel Autofilter
I have a workbook that I made which generates a density map of I/O signals in an industrial plant. The whole workbook is driven by the lead sheet which the user inputs the signal type and where it is ...
0
votes
2answers
570 views
POI Auto Filter
How do I use Apache POI to pre-define an auto-filter region in an Excel 2007 document?
A small code example or link would be nice.
0
votes
1answer
788 views
Reordering Excel Table Columns with Filters Intact
I am running into an issue with Excel 2007 via VSTO 3.0. In my project, I need to shuffle columns around occasionally. Normally, this works fine but I have recently found that an issue arises when the ...
0
votes
1answer
299 views
How to make the Excel broken autofilter indicator go away?
Excel 2003
Working with a large sheet which is typically autofiltered. However when autofilter is turned off the indicators are still all there, they just don't work.
Not sure whether some vba was run ...
0
votes
1answer
648 views
Excel Autofilter in VB.NET
In my application I'm exporting an Excel file by getting the layout of a HTML page. So, in my codebehind, I'm modifying the HTML layout and inserting itens on it like if it was a webpage. Doing it ...
0
votes
1answer
404 views
Coding Text Filters in Excel 2007
I am trying to use code to filter a spreadsheet dynamically, based on the current date.
I am storing the date I need to filter on as "CurrDay" and I'm attempting to recall that stored date back ...