Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 8207 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

I am newbie with FM and I have a very stupid question :

How to create a script wich determines the minimum value in the database for a specific text field ?

I hope with you can help me

Posted

You don't need a script, you can use either a Summary field returning the Minimum of the field in the found set or a self join relationship linking all the records and a field calculated as Min(SelfJoin::TheField)

In both cases the formulas apply to *number* fields while your post would appear to point to text field (?)

Posted

What exactly IS the minimum value of a text field? Would you consider "," to be a lower value than "*", "%" than "@", "a" than "A", etc.?

-bd

  • Newbies
Posted

Yes, I mean that "a" is lower than "A, "A" is lower than "B", etc.

For example, I have 5 records in my database Cities

(1) New York

(2) Paris

(3) Brussels

(4) London

(5) San Francisco

The Minimum value in my database should be "Brussels" and the Maximum value should be "San Francisco".. but I can write the script/field because it is not a numeric field

Posted

Use the script:

Show All Records

Sort (setup to sort by the field you wish)

Go to Record/Request/Page (first)

Set Field (gFirstOne, Country)

Go to Record/Request/Page (last)

Set Field (gLastOne, Country)

"Country" is the field you wish to find the "minimum" and "maximum" of, gLastOne and gFirstOne are global text fields to provide temporary storage of the first and last values. To differentiate "a" and "A" (if you really need to) you must set the field indexing for Country to ASCII, but then searching for an "a" won't find an "A".

-bd

This topic is 8207 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.