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

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

Recommended Posts

Posted

I have a simple script that copies data from one field into another. I'd like to apply this script to all of the records in the database. How can I make the script advance through each record?

Posted

If I understand you correctly you want to copy the contents of FieldA to FieldB in each record within your database?

Allow User Abort (Off)

Go To Record/Request/First

Loop

If(IsEmpty(FieldB))

Set Field(FieldB;FieldA)

EndIF

Go To Record/Request/Next; Exit after Last

End Loop

A few comments/Cautions:

The If statement is there only if there may already be data in FieldB in some records that you do not want to change.

If the database is large it will run for several minutes.

MAKE A BACKUP of your files before running this script!

If this is not what you need let us know.

hth

Posted

The Replace script step will also work. The conditional can be specified in the calculation.

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