Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Updating all records script

Featured Replies

Greetings All

I'm sure this has been answered, perhaps I'm not searching for the right keywords. Anyway, wondering if someone can assist.

I added a new text field to an existing database. The default value is "No." But, when a record is approved, the user changes this value to "Yes." This condition applies for all new records. Now here's my problem, I need a simple script that would update the other 500+ records currently in the database to reflect "Yes" in this new field. Note the field is blank for these records.

Thanks in advance!

-steve

GoToRecord[first]

Loop

If[isEmpty(newtextfield)]

SetField[newtextfield;"Yes"]

End If

GoToRecord[Next;exit after last]

End loop

David's script is correct -- although I might add a Freeze before any Loop to speed things up. However, if this is just a one-time problem, simply find the records where the new field is empty and do a Replace with "Yes."

... and I add a little something that refreshes the screen every so often, so the user doesn't think the program has crashed...

Go To Record [ first ]

Loop

Freeze Window

If [ IsEmpty(newtextfield) ]

Set Field [ newtextfield ; "Yes" ]

End If

If [ Mod ( Get (RecordNumber) ; 100 ) = 0 ]

Refresh Window []

End If

Go To Record [ Next ; exit after last ]

End loop

I usually make the number in the Mod function so the screen refreshes once every 1.5 or 2 seconds.

Also, make sure you're running the loop on a Form layout and not a List, for increased speed.

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.