Help!!!
I have some folks back east using a solution I developed, but for some reason they get different answers than I do when running certain scripts. Specifically, the database includes data that has section numbers (Section 1, Section 1.1, Section 2.3.5, etc.). I have a script that will constrain the found set to just one section. The script parameter is set to the appropriate section number depending on the button that called it. Assuming I'm looking for section 4, the script does the following:
goes to find mode
pastes "4." into the section number field (this finds 4.1, 4.2, etc.)
makes a new find request
pastes "=4" into the section number field (this finds "section 4", which doesn't have the period)
performs the find
sorts
On my computer, finding "4." returns all the records that BEGIN with "4."... On their computers back East, it returns every record that CONTAINS "4.". I get:
4
4.1
4.1.1
4.1.2
...
They get
3.4.1
3.4.2
4
4
4.1
4.1.1
4.1.2
5.4.1
7.2.1
...
Why would this be so different? The files are identical, so why is the behavior different?
Thanks!