#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default AutoFilter


Hello,

Could someone please advise on how I can accomplish the followin
task:

I wish to create a macro that asks the user for two dates.

For example: The user may wish to AutoFilter all the records in the
spreadsheet that have a dates between 01 Jul 2003 and 31 Jul 2003.

Selection.AutoFilter Field:=3, Criteria1:="=01JUL03", Operator:=xlAnd
_
Criteria2:="<=31JUL03"

I do not know how to get user input into the above VBA code.

I'd like two input boxes, one for the start date and one for the en
date.

Column 3 of the spreadsheet has a heading called Date Demanded.

Any help with this would be greatly appreciated.

Thanks,

Chris.
:

-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,979
Default AutoFilter

You can use input boxes for the start and end dates:

'=================
Dim strA As String
Dim strB As String
strA = Application.InputBox("Start Date")
strB = Application.InputBox("End Date")

Selection.AutoFilter Field:=3, Criteria1:="=" & strA, _
Operator:=xlAnd, Criteria2:="<=" & strB
'==============================

Or, create dropdown list of dates on the worksheet using data validation:

http://www.contextures.com/xlDataVal01.html

Format these dates the same as the dates in column C.

The user will select a start and end date from the dropdown lists, then
run the AutoFilter macro:

'==================================
Selection.AutoFilter Field:=1, Criteria1:="=" & Range("K1").Value, _
Operator:=xlAnd, Criteria2:="<=" & Range("L1").Value
'==================================

longbow wrote:
Hello,

Could someone please advise on how I can accomplish the following
task:

I wish to create a macro that asks the user for two dates.

For example: The user may wish to AutoFilter all the records in the
spreadsheet that have a dates between 01 Jul 2003 and 31 Jul 2003.

Selection.AutoFilter Field:=3, Criteria1:="=01JUL03", Operator:=xlAnd,
_
Criteria2:="<=31JUL03"

I do not know how to get user input into the above VBA code.

I'd like two input boxes, one for the start date and one for the end
date.

Column 3 of the spreadsheet has a heading called Date Demanded.

Any help with this would be greatly appreciated.

Thanks,

Chris.
:)


------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default AutoFilter


Thankyou Don for you help, much appreciated.

Kind regards,

Chris. :

-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default AutoFilter

glad to help

--
Don Guillett
SalesAid Software

"longbow" wrote in message
...

Thankyou Don for you help, much appreciated.

Kind regards,

Chris. :)


------------------------------------------------
~~ Message posted from
http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/



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 09:03 PM.

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"