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

My filter is not returning any data. Here is the applicable portion of the
code:

Sub WorkOrdersCompletedByDate()
Prompt = "Please Enter Beginning Date (mm/dd/yy). Hitting 'Cancel' Will
End the Macro."
Title = "Print Completed Work Orders for a Specific Date Range"
newname1 = InputBox(Prompt, Title, "mm/dd/yy")
Prompt = "Please Enter Ending Date (mm/dd/yy). Hitting 'Cancel' Will
End the Macro."
Title = "Print Completed Work Orders for a Specific Date Range"
newname2 = InputBox(Prompt, Title, "mm/dd/yy")
Selection.AutoFilter Field:=12, Criteria1:="=Newname1", Operator:=xlAnd _
, Criteria2:="<=newname2"
End Sub

Is there a # format issue here???? Someone please help!!!! THANK YOU!!!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Filter Problem

Your quotation marks are wrong - your criteria returns the literal
=NewName1 rather than the compound you want


try

criteria1:="=" & newname1

NOTE you may still need to format newname1 (though hopefully not!)

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 21
Default Filter Problem

Thank you so much!! Works great now!

" wrote:

Your quotation marks are wrong - your criteria returns the literal
=NewName1 rather than the compound you want


try

criteria1:="=" & newname1

NOTE you may still need to format newname1 (though hopefully not!)


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
Filter problem Ray[_7_] New Users to Excel 1 June 22nd 11 12:25 AM
Filter problem cumi Excel Worksheet Functions 1 April 3rd 07 05:10 AM
filter problem strictly_rhythm Excel Discussion (Misc queries) 1 July 3rd 06 09:49 PM
Filter problem [email protected] Excel Worksheet Functions 1 November 28th 05 09:10 PM
filter problem Basil[_3_] Excel Programming 2 January 30th 04 11:21 AM


All times are GMT +1. The time now is 05:11 PM.

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

About Us

"It's about Microsoft Excel"