Jump 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.

Featured Replies

I have one big table for contact management. Three fields are spouse_fname, spouse_mname, and spouse_lname. I also have husband_fname, husband_mname, husband_lname and wife_fname, wife_mname, wife_lname. I want to populate the spouse fields using a script instead of copying them over one by one from husband or wife since there are about 6000 contacts I am dealing with. I set a up a script so that.

Go to record(first)

Loop

If(isempty(spouse_fname)and (not isempty(husband_fname)

copy(husband_fname)

paste(spouse_fname)

copy(husband_mname)

paste(spouse_mname)

copy(husband_lname)

paste(spouse_lname)

else if(isempty(spouse_fname)and(not isempty(wife_fname)

copy(wife_fname)

pasete(spouse_fname)

copy(wife_mname)

paste(spouse_mname)

copy(wife_lname)

paste(spouse_lname)

(end if)

go to record (next) (exit after last)

(end loop)

the script seems logical the problem is that the values are not being copied from one field into the other.

What could be causing the values to not be copied and pasted. I know there are values there too i checked.

THanks!

Edited by Guest

Use set field rather than copy/paste. Set field works whether fields are on the layout or not. Copy/paste messes with users clipboard and is generally considered poor practice, and fails if fields are not on the layout. Example

Set field[ spouse_fname ; husband_fname ]

Create an account or sign in to comment

Important Information

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

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.