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

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

Recommended Posts

Posted

if field (1) in the current record has the value of 4

and field (2) in the current record has the value of 100

i want to find all records that have a value of 2

Posted

Create two global fields, call 'em gField1 and gField2

SetField (gField1, Field1)

SetField (gField2, Field2)

Enter Find Mode

Set Field (Field1, (gField1 - 2) & "..." " (gField1 + 2)

Set Field (Field1, (gField2 - 10) & "..." " (gField2 + 10)

Perform Find

Additionally, you could create two more global fields, called gRange1 and gRange2, and a layout where these fields exist. Then the script is:

SetField (gField1, Field1)

SetField (gField2, Field2)

GoToLayout[LayoutWithGlobalRangeFields, Pause]

Enter Find Mode

Set Field (Field1, (gField1 - gRange1) & "..." " (gField1 + gRange1)

Set Field (Field1, (gField2 - gRange2) & "..." " (gField2 + gRange2)

Perform Find

  • Newbies
Posted

i cannot make this work

Set Field (Field1, (gField1 - 2) & "..." " (gField1 + 2)

maybe i don't understand the abreviations

it does not accept "

Posted

Change

Set Field (Field1, (gField1 - 2) & "..." " (gField1 + 2)

to

Set Field (Field1, (gField1 - 2) & "..." & (gField1 + 2)

If you did this manually, you would enter

2...6

in the field, if valus is 4.

This is exactly what Lee's script does.

This topic is 7893 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.