dbTalk Databases Forums  

Exact matches

comp.databases.filemaker comp.databases.filemaker


Discuss Exact matches in the comp.databases.filemaker forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
joelabdul@yahoo.com
 
Posts: n/a

Default Exact matches - 03-07-2007 , 05:01 PM






Why can't i do an exact match with filemaker pro 8.0. I know with 7.0
you can use == and later versions it went to " *** ". Am I missing
something?


Reply With Quote
  #2  
Old   
Helpful Harry
 
Posts: n/a

Default Re: Exact matches - 03-07-2007 , 05:38 PM






In article <1173308487.504855.206970 (AT) 64g2000cwx (DOT) googlegroups.com>,
joelabdul (AT) yahoo (DOT) com wrote:

Quote:
Why can't i do an exact match with filemaker pro 8.0. I know with 7.0
you can use == and later versions it went to " *** ". Am I missing
something?
I don't know for sure about the newer versions of FileMaker, but in
FileMaker 5.5 and earlier the symbol for "exact match" is a single "=".
A double one "==" would try and find a field with and exact match of
the second "=".

Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)


Reply With Quote
  #3  
Old   
Matt Wills
 
Posts: n/a

Default Re: Exact matches - 03-07-2007 , 06:11 PM



On 03/07/2007 18:01:27 joelabdul (AT) yahoo (DOT) com wrote:

Quote:
Why can't i do an exact match with filemaker pro 8.0. I know with 7.0 you
can use == and later versions it went to " *** ". Am I missing something?


Exact match has been the same for as long as I can remember: two equals signs (==), as described in Help (both 6 and 8.5).

Matt


Reply With Quote
  #4  
Old   
Helpful Harry
 
Posts: n/a

Default Re: Exact matches - 03-07-2007 , 09:08 PM



In article <371911.WIMNUSDD (AT) news (DOT) verizon.net>, Matt Wills
<I'm (AT) witz (DOT) end> wrote:

Quote:
On 03/07/2007 18:01:27 joelabdul (AT) yahoo (DOT) com wrote:

Why can't i do an exact match with filemaker pro 8.0. I know with 7.0 you
can use == and later versions it went to " *** ". Am I missing something?

Exact match has been the same for as long as I can remember: two equals signs
(==), as described in Help (both 6 and 8.5).
Opps! You're right, even in FileMaker 4 and 5.

The single "=" finds words, while the double "==" finds phrases
(multiple words).

Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)


Reply With Quote
  #5  
Old   
joelabdul@yahoo.com
 
Posts: n/a

Default Re: Exact matches - 03-08-2007 , 03:46 AM



On Mar 7, 10:08 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com>
wrote:
Quote:
In article <371911.WIMNU... (AT) news (DOT) verizon.net>, Matt Wills

I... (AT) witz (DOT) end> wrote:
On 03/07/2007 18:01:27 joelab... (AT) yahoo (DOT) com wrote:

Why can't i do anexactmatch with filemaker pro 8.0. I know with 7.0 you
can use == and later versions it went to " *** ". Am I missing something?

Exactmatch has been the same for as long as I can remember: two equals signs
(==), as described in Help (both 6 and 8.5).

Opps! You're right, even in FileMaker 4 and 5.

The single "=" finds words, while the double "==" finds phrases
(multiple words).

Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)


The actual problem is I'm trying to search for a single word in a cell
with two words. For example I want "Troy" not "So. Troy". ==Troy
does not work and "Troy" does not work. How's does Happy Harry
Handle my Horribly simplistic harrassing problem.



Reply With Quote
  #6  
Old   
Ursus
 
Posts: n/a

Default Re: Exact matches - 03-08-2007 , 04:19 AM



Let me see, you want all the records that has a field in which ONLY the word
Troy stands and NO other words.

COMPLETELY UNTESTED!

Say your field is: MyField <text>
Create a global field: MySearch <text, global>
Create a calc: cMySearch <calculation, number>

in the calc you have

If ( patterncount ( Myfield ; Mysearch ) = 1 AND ( length ( MyField ) =
Length ( MySearch ) ) ; 1 ; 0 )

Now when you search for a 1 you will find what you need.

Ursus

<joelabdul (AT) yahoo (DOT) com> schreef in bericht
news:1173347184.596252.240590 (AT) t69g2000cwt (DOT) googlegroups.com...
Quote:
On Mar 7, 10:08 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com
wrote:
In article <371911.WIMNU... (AT) news (DOT) verizon.net>, Matt Wills

I... (AT) witz (DOT) end> wrote:
On 03/07/2007 18:01:27 joelab... (AT) yahoo (DOT) com wrote:

Why can't i do anexactmatch with filemaker pro 8.0. I know with 7.0
you
can use == and later versions it went to " *** ". Am I missing
something?

Exactmatch has been the same for as long as I can remember: two equals
signs
(==), as described in Help (both 6 and 8.5).

Opps! You're right, even in FileMaker 4 and 5.

The single "=" finds words, while the double "==" finds phrases
(multiple words).

Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)



The actual problem is I'm trying to search for a single word in a cell
with two words. For example I want "Troy" not "So. Troy". ==Troy
does not work and "Troy" does not work. How's does Happy Harry
Handle my Horribly simplistic harrassing problem.




Reply With Quote
  #7  
Old   
Matt Wills
 
Posts: n/a

Default Re: Exact matches - 03-08-2007 , 06:41 AM



On 03/08/2007 05:19:59 "Ursus" <ursus.kirk (AT) wanadoo (DOT) nl> wrote:

Quote:
Let me see, you want all the records that has a field in which ONLY the
word Troy stands and NO other words.

COMPLETELY UNTESTED!

Say your field is: MyField Create a global field: MySearch Create a calc:
cMySearch

in the calc you have

If ( patterncount ( Myfield ; Mysearch ) = 1 AND ( length ( MyField ) =
Length ( MySearch ) ) ; 1 ; 0 )

Now when you search for a 1 you will find what you need.
Unless I am missing the issue entirely, ==Troy should accomplish that.

As I have just tested in my own solution:

Find Burlington returns 2 records: Burlington and South Burlington
Find ==Burlington returns one record: Burlington.

Find Rutland returns 2 records: Rutland and Rutland Town
Find ==Rutland returns one record: Rutland.

Matt

Quote:
joelabdul (AT) yahoo (DOT) com> schreef in bericht
news:1173347184.596252.240590 (AT) t69g2000cwt (DOT) googlegroups.com...

On Mar 7, 10:08 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com> wrote:

In article <371911.WIMNU... (AT) news (DOT) verizon.net>, Matt Wills

I... (AT) witz (DOT) end> wrote:

On 03/07/2007 18:01:27 joelab... (AT) yahoo (DOT) com wrote:

Why can't i do anexactmatch with filemaker pro 8.0. I know with 7.0
you can use == and later versions it went to " *** ". Am I missing
something?

Exactmatch has been the same for as long as I can remember: two equals
signs (==), as described in Help (both 6 and 8.5).

Opps! You're right, even in FileMaker 4 and 5.

The single "=" finds words, while the double "==" finds phrases
(multiple words).

Helpful Harry Hopefully helping harassed humans happily handle handiwork
hardships ;o)

The actual problem is I'm trying to search for a single word in a cell
with two words. For example I want "Troy" not "So. Troy". ==Troy does
not work and "Troy" does not work. How's does Happy Harry Handle my
Horribly simplistic harrassing problem.

Reply With Quote
Reply




Thread Tools
Display Modes

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



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.