Patty-
Switch to SQL view in your query design and copy and paste the SQL in a reply. I need to see your entire query, not just a picture of part of it.
John Viescas, Author
Microsoft Access 2010 Inside Out
Microsoft Access 2007 Inside Out
Microsoft Access 2003 Inside Out
Building Microsoft Access Applications
SQL Queries for Mere Mortals
(Paris, France)
On Feb 4, 2015, at 8:24 PM, pattykf@cox.net [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:
this is what i tried and it would not work
So I must be doing something wrong but just not sure what, it converts the date but will not allow me to put in a date criteria, this one will only need a date less than, but I will have others that I need to do date ranges for
as always, thank you for all your help
Patty
---In
MS_Access_Professionals@yahoogroups.com, <pattykf@...> wrote :
So I must be doing something wrong but just not sure what, it converts the date but will not allow me to put in a date criteria, this one will only need a date less than, but I will have others that I need to do date ranges for
as always, thank you for all your help
Patty
---In
MS_Access_Professionals@yahoogroups.com, <pattykf@...> wrote :
I want to make sure i understand this, so in the new query I need to also put int he CDate information to have it convert the date to this correct format? It already is showing the correct date format in the query. Where do i put the new CDate information in the query
I must sound like I have no knowledge in this and you are correct, learning but uphill and you are a huge support, sorry if it is a bother.
Patty
---In MS_Access_Professionals@yahoogroups.com, <JohnV@...> wrote :
I must sound like I have no knowledge in this and you are correct, learning but uphill and you are a huge support, sorry if it is a bother.
Patty
---In MS_Access_Professionals@yahoogroups.com, <JohnV@...> wrote :
Patty-
Where is the CDate call in your DOB field? It should read:
DOB: CDate(Left([dbo_person].[date_of_birth],4) & "-" & Mid([dbo_person].[date_of_birth],5,2) & "-" & Right([dbo_person].[date_of_birth],2))
Then your criteria should work. You're getting a data type mismatch because you're comparing the original string date_of_birth with a date/time literal.
John Viescas, Author
Microsoft Access 2010 Inside Out
Microsoft Access 2007 Inside Out
Microsoft Access 2003 Inside Out
Building Microsoft Access Applications
SQL Queries for Mere Mortals
(Paris, France)
On Feb 4, 2015, at 7:46 PM, pattykf@... [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:I am not sure I have it correct since still getting error, in the query I made the date of birth field an alias DOB
and put in date greater field
I still get a data missmatch error the second picture is of the field before I try to add the date criteria
Patty
---In MS_Access_Professionals@yahoogroups.com, <JohnV@...> wrote :Patty-The CDate should work as long as all your rows have yyyymmdd format in the date_of_birth field, but you must give the new field an alias like DOB - AS DOB. Then in the Criteria line, use something like:BETWEEN #01/01/1960# AND #12/31/1970#Note that you have to use hashtags as delimiters for date literals.John Viescas, AuthorMicrosoft Access 2010 Inside OutMicrosoft Access 2007 Inside OutMicrosoft Access 2003 Inside OutBuilding Microsoft Access ApplicationsSQL Queries for Mere Mortals(Paris, France)On Feb 4, 2015, at 7:19 PM, pattykf@... [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:I am trying to pull information matching up my person table where we did a date conversion formula on it with a diagnosis table to give me the list of patients with the identified diagnosis but within a date range in the date of birth. we used this conversion (see below) based on a date that was a text field of a date. I tried to use the "text" format for the date as well as the normal date format but it gave me data missmatch error. How do I now work with this date format?dbo_person.person_id, dbo_person.person_nbr, dbo_person.last_name, dbo_person.first_name, CDate(Left([dbo_person].[date_of_birth],4) & "-" & Mid([dbo_person].[date_of_birth],5,2) & "-" & Right([dbo_person].[date_of_birth],2)) AS date_of_birth
Thank you for all of your help
Patty
__._,_.___
Posted by: John Viescas <johnv@msn.com>
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (10) |
.
__,_._,___
Tidak ada komentar:
Posting Komentar