472,146 Members | 1,373 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,146 software developers and data experts.

Function in QBE grid not returning correct data(?)

I'm hoping someone can help me here.

I'm having problems using a function to get the search criteria for a
column in the QBE grid. The column's data type is Long and the
problem is that if I want to search on more than one value my function
in the QBE correctly returns "1 Or 4" (for example), but something's
getting garbled and I'm not getting the same data back if I just enter
"1 Or 4" (w/o quotes) in the QBE grid.

My guess is that my function is returning a string and so that's
what's used in the QBE. I tried returning a Variant and I tried a
bunch of other stuff --- but nothing's worked!

Any suggestions would be greatly appreciated.

-id
Nov 12 '05 #1
4 3223
Try using "In(1,4)" as the criteria, without the quotes, of course.

Larry Linson
Microsoft Access MVP

"i. dzhugashvili" <id***********@hotmail.com> wrote in message
news:13**************************@posting.google.c om...
I'm hoping someone can help me here.

I'm having problems using a function to get the search criteria for a
column in the QBE grid. The column's data type is Long and the
problem is that if I want to search on more than one value my function
in the QBE correctly returns "1 Or 4" (for example), but something's
getting garbled and I'm not getting the same data back if I just enter
"1 Or 4" (w/o quotes) in the QBE grid.

My guess is that my function is returning a string and so that's
what's used in the QBE. I tried returning a Variant and I tried a
bunch of other stuff --- but nothing's worked!

Any suggestions would be greatly appreciated.

-id

Nov 12 '05 #2
Hi Larry,

Thanks for your suggestion.

If I enter "In(1,4)" (w/o quotes) in the QBE grid it works fine of
course. If I try to return this value in the function used in the
grid I get one of two errors:

#1. If I return "In(1,4)" (with quotes) in my function as a String
or Variant, my query returns nothing.
#2. If I attempt to return "In(1,4)" (w/o quotes) I get a compile
error on my function because it doesn't know what to do with the In()
function. I tried specifying different return types for the function
(I was hopeful that Variant would help me out) but no luck.

Any other ideas?

thanks
-Jay
"Larry Linson" <la**********@ntpcug.org> wrote in message news:<6V*****************@nwrddc02.gnilink.net>...
Try using "In(1,4)" as the criteria, without the quotes, of course.

Larry Linson
Microsoft Access MVP

"i. dzhugashvili" <id***********@hotmail.com> wrote in message
news:13**************************@posting.google.c om...
I'm hoping someone can help me here.

I'm having problems using a function to get the search criteria for a
column in the QBE grid. The column's data type is Long and the
problem is that if I want to search on more than one value my function
in the QBE correctly returns "1 Or 4" (for example), but something's
getting garbled and I'm not getting the same data back if I just enter
"1 Or 4" (w/o quotes) in the QBE grid.

My guess is that my function is returning a string and so that's
what's used in the QBE. I tried returning a Variant and I tried a
bunch of other stuff --- but nothing's worked!

Any suggestions would be greatly appreciated.

-id

Nov 12 '05 #3
Create a dummy query, and modify the query SQL as necessary. Then
save the query and finally run it.

Function MySQLStatement(Arg1, Arg2,Arg3...) <--- use an array?
dim strSQL as string
dim intCounter as integer

for intCounter = 1 to ubound(paramArray)
strSQL = "SELECT T1.F1, T1.F2... FROM T1 WHERE " &
paramArray(intcounter) & " AND "
next intCounter

strSQL = LEft$(strSQL,len$(strSQL)-5 'removes the ' AND '

strsql = strsql & ";"

End function

assuming that big mess works, you can then do something like modify
the SQL of a stored holder query.

dim qdf as querydef
set qdf=currentdb.querydefs("qryHolder")
qdf.SQL = MySQLStatement(...)
qdf.Save

then you could do something like
Docmd.openquery "qryHolder"
Nov 12 '05 #4
Thanks Larry, I'll certainly give it a try.

-id
"Larry Linson" <la**********@ntpcug.org> wrote in message news:<AH*****************@nwrddc01.gnilink.net>...
Yes. You can create the string containing the SQL (that's what SQL is, a
string of text to be interpreted by the database engine) and store it in a
public variable or in a field on a form ahead of time and pick it up in the
Report's Open event and replace the RecordSource. (The Report's Open event
is the only event that allows you to replace the Record Source.)

Larry Linson
Microsoft Access MVP
"i. dzhugashvili" <id***********@hotmail.com> wrote in message
news:13**************************@posting.google.c om...
That's a good suggestion Pieter and I would have tried it except I
ended up modifying my function a little bit to return a Where criteria
which I applied to a DoCmd.OpenReport call. It seems to be working.
I usually don't use queries in Access except I wanted to use it as the
data source for a report. The report designer in Access is great. Do
you know if I can use your technique to create a query that can be
used as the data source for a report? How would bind the columns in
the query with fields in the report?
thanks again
-id


pi********@hotmail.com (Pieter Linden) wrote in message

news:<bf**************************@posting.google. com>...
Create a dummy query, and modify the query SQL as necessary. Then
save the query and finally run it.

Function MySQLStatement(Arg1, Arg2,Arg3...) <--- use an array?
dim strSQL as string
dim intCounter as integer

for intCounter = 1 to ubound(paramArray)
strSQL = "SELECT T1.F1, T1.F2... FROM T1 WHERE " &
paramArray(intcounter) & " AND "
next intCounter

strSQL = LEft$(strSQL,len$(strSQL)-5 'removes the ' AND '

strsql = strsql & ";"

End function

assuming that big mess works, you can then do something like modify
the SQL of a stored holder query.

dim qdf as querydef
set qdf=currentdb.querydefs("qryHolder")
qdf.SQL = MySQLStatement(...)
qdf.Save

then you could do something like
Docmd.openquery "qryHolder"

Nov 12 '05 #5

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

3 posts views Thread by Snake | last post: by
3 posts views Thread by Martin Montgomery | last post: by
5 posts views Thread by IGotYourDotNet | last post: by
117 posts views Thread by phil-news-nospam | last post: by
12 posts views Thread by Googy | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.