Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Autofilter help

I need some help. I have generated a form with a date in
it without difficulty. However, after that my program
imports data and I want to autofilter the data based on
the date that was put in the form. Eg.. On running the
program, I enter a date of 18/11/2003 into a text box.
This is then written to a cell in sheet 2. The data is
loaded into sheet 1 and the filter is set but what I want
to do is then filter on the date that has already been
keyed. How do I do it???
..


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Autofilter help

You can write VBA code (and make it an Event procedure
tied to whatever event you wish to trigger the filtering)
using the Autofilter method of the Range object - check
VBA Help file for details, but basically you would do
something like:

Range("RangeName").Autofilter 5, Range("DateCell").Value

This tells Excel to apply an autofilter to the range
called "RangeName" where the 5th column (assuming that is
your date column) is filtered to show whatever is in the
cell I have called "DateCell" - The autofilter method
applied to the range with no arguments will then remove
the autofilter, once you are done.

-----Original Message-----
I need some help. I have generated a form with a date in
it without difficulty. However, after that my program
imports data and I want to autofilter the data based on
the date that was put in the form. Eg.. On running the
program, I enter a date of 18/11/2003 into a text box.
This is then written to a cell in sheet 2. The data is
loaded into sheet 1 and the filter is set but what I want
to do is then filter on the date that has already been
keyed. How do I do it???
..


.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
excel 2007 autofilter change to 2003 autofilter functionality? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 10:05 PM
2007 excel autofilter back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 3 April 19th 10 08:11 PM
2007 excel autofilter change back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 05:53 PM
2007 Autofilter worse than 2003 Autofilter jsky Excel Discussion (Misc queries) 9 October 31st 07 12:14 AM
How to Sort within AutoFilter with Protection on (and AutoFilter . giblon Excel Discussion (Misc queries) 1 February 16th 06 12:23 PM


All times are GMT +1. The time now is 02:20 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"