Tagged Questions

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 = ...
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
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: ...
0
votes
2answers
325 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
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 ...