I do not understand your problem. Give an example of the data that you would
be searching for.
For instance, I have a field of a box number where a file is located, I then
have a description of that file (i.e., Sam Jones v. Ima Good Sample). I need
to be able to "query" that description field. Such as searching for the
particular file in a particular box out of 25,000 entries. Impossible?
> I do not understand your problem. Give an example of the data that you would
> be searching for.
>
> > I have a field which has a description of a file - I need to be able to
> > "query" this field - I've searched all types of parameters, but logical or
> > mathematical are not going to work. Am I out of luck?
KARL DEWEY - 18 Jul 2006 23:03 GMT
This should do it --
SELECT YourTable.*
FROM YourTable
WHERE (((YourTable.description) Like "*" & [Enter first party name] & "*"
And (YourTable.description) Like "*" & [Enter second party name] & "*"));
If you enter one party and just press ENTER when prompted for the second it
will pull all records with the first party.
> For instance, I have a field of a box number where a file is located, I then
> have a description of that file (i.e., Sam Jones v. Ima Good Sample). I need
[quoted text clipped - 7 lines]
> > > "query" this field - I've searched all types of parameters, but logical or
> > > mathematical are not going to work. Am I out of luck?
YesGrumpy - 19 Jul 2006 13:25 GMT
The problem with this is that we would have to know the first and last party
name - it may be just a string of information - I probably am asking for too
much. But a thought came to me, is there a way to relate a report in a query?
Thanks so much for your help.
> This should do it --
> SELECT YourTable.*
[quoted text clipped - 16 lines]
> > > > "query" this field - I've searched all types of parameters, but logical or
> > > > mathematical are not going to work. Am I out of luck?
KARL DEWEY - 19 Jul 2006 15:57 GMT
You do not have to enter the party's name but ANY data that you know. If
you enter both the first and second the record must contain both. If you only
enter one and just press ENTER when prompted for the second it will pull data
that has the first entry.
> The problem with this is that we would have to know the first and last party
> name - it may be just a string of information - I probably am asking for too
[quoted text clipped - 22 lines]
> > > > > "query" this field - I've searched all types of parameters, but logical or
> > > > > mathematical are not going to work. Am I out of luck?