Microsoft Access Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsDatabasesMicrosoft Access Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old July 14th, 2005, 12:27 PM
theguz theguz is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jun 2005
Posts: 54 theguz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 13 h 40 m 34 sec
Reputation Power: 4
Question Run query based off of dates

Here is my problem. I want to run a query based off of dates that the user inputs from combo boxes off the form. I also allow them to choose if they want to search before, after or between dates. Based on what they choose the combo box will be enabled and they choose the date. All of that is working fine. However, when the code comes to the select query, I get the dialog box after running the query asking for the dates again. I check the variable that is supposed to store the date and it is correct. Thank you in advance. here is my code all of the variables excluding valu, db and qdf are strings:

Set db = CurrentDb()
Set qdf = db.QueryDefs("qryDate")

valu = Frame14.Value 'Int. Value gained from option group
strSQl = "SELECT * FROM [ImportedData] WHERE "

Select Case valu
Case 1 'Before is selected
date1 = Combo1.Value
date2 = Combo2.Value
date3 = Combo3.Value

combodate1 = "#" + date1 + Chr(47) + date2 + Chr(47)_
+date3 + "#"
DateSQL = "CRDATE <combodate1;"

Case 2 'After is Selected
date1 = Combo1.Value
date2 = Combo2.Value
date3 = Combo3.Value

combodate1 = "#" + date1 + Chr(47) + date2 + Chr(47)_
+ date3 + "#"
DateSQL = "CRDATE >combodate1;"

Case 3 'Between is selected
date1 = Combo1.Value
date2 = Combo2.Value
date3 = Combo3.Value
date4 = Combo4.Value
date5 = Combo5.Value
date6 = Combo6.Value

combodate1 = "#" + date1 + Chr(47) + date2 + Chr(47)_
+ date3 + "#"
combodate2 = "#" + date4 + Chr(47) + date5 + Chr(47)_
+ date6 + "#"
DateSQL = "BETWEEN" + combodate1 + "AND" _
+ combodate2 + Chr(59)

End Select

totalSQL = strSQl + DateSQL
qdf.SQL = totalSQL
DoCmd.OpenQuery "qryDate"

theguz

Reply With Quote
  #2  
Old July 14th, 2005, 01:03 PM
theguz theguz is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jun 2005
Posts: 54 theguz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 13 h 40 m 34 sec
Reputation Power: 4
Never mind I figured it out. I had () around combodate1 in my string statements. Duhhhh

Reply With Quote
  #3  
Old July 14th, 2005, 05:27 PM
lwells lwells is offline
Contributing User
Dev Articles Novice (500 - 999 posts)
 
Join Date: Sep 2004
Posts: 632 lwells User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 21 h 59 m 38 sec
Reputation Power: 5
Unless it was just a typo error...you need to fix this part as well

Old
DateSQL = "BETWEEN" + combodate1 + "AND" + combodate2 + Chr(59)

To

DateSQL = " CRDATE BETWEEN " + combodate1 + "AND " + combodate2


Added Note:

You might want to be careful about using the "+" verses the "&" in your strings. If any of the variables or text values can be a number or interpreted as a number it will try to perform an addition function.
Example

If IsNull(txtMyText) Then

strMyString = "This textbox text is " & txtMyText + chr(13) + chr(10) & " This should be on another line"

Will yield:
This textbox text is This should be on another line

Because the Null gets propagated through the expression (where the + signs are) the entire expression becomes Null

The above example will also fail if the value in txtMyText can be interpreted as a number. Just a recommendation.

Last edited by lwells : July 14th, 2005 at 05:51 PM. Reason: Added additional info

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsDatabasesMicrosoft Access Development > Run query based off of dates


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT