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.

Generating new records with specific dates and days of the week for a date range

Featured Replies

  • Newbies

I need a script to be able to create a new set of records with dates for specific days of the week. Like:

Generate 9 records starting with April 5th that fall into the following sequential pattern:

April 5

April 5

April 8

April 12

April 12

April 15

April 19

April 19

April 22

and so on

this is to facilitate creating service order records for church services (Two services on Sunday and one on Wednesday) Right now I have to create all the service/date records manually.

Perhaps you could use something like the attached. There's no script - just create as many records as required.

Services.fp7.zip

  • 5 months later...

You could build a script that loops through a list of dates in a field. Use GetValue and a variable that increments with each loop. Something like this:

Set Variable [$values; Value:ValueCount ( Services::gDateList )]

Set Variable [$counter; Value:1]

Loop

Exit Loop If [$counter > $values]

New Record/Request

Set Field [ Services::Date; GetValue ( Services::gDateList ; $counter )]

Set Field [// Set other fields as appropriate]

Set Variable [$counter; Value:$counter + 1]

End Loop

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.