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

Hi there :P

I'm getting mad trying to do something (which would be very very easy in Java or PHP) in FileMaker.

Here is the thing :

I have a list of modules I get from a checkbox. This looks like this :

AA

BG

BR

SR1

SR2

...

And I would like to store each module in a tab (a variable with repetition in fact).

If all module were written with 2 letters, that would be easier... but it's not the case ;o)


Set Variable [$mod_list; Value:Global::G_Export_Module_List]

Set Variable [$mod_list_tab; Value:""]

Set Variable [$repet; Value:1]

Loop

 //It's here I need your help ;-)

End Loop

Thank you in advance for your help !

F.

[color:red]EDIT :

Check the custom function "split" which might be helpful : http://www.briandunning.com/cf/45

Edited by Guest

I think you're looking for something like this.

Set Variable [$mod_list; Value:Global::G_Export_Module_List]

Set Variable [$mod_list_tab; Value:""]

Set Variable [$repet; Value:1]

Set Variable [$mod_Count; Value: ValueCount($mod_list)]

Loop

//It's here where I'm attempting to help ;-)

Set Variable [$mod_list_tab[$repet]; Value:GetValue($mod_list; $repet)]

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

Exit Loop If [$repet > $mod_Count]

End Loop

  • Author

Oh Thank you for the quick answer... I'm going to test that and I'll keep you posted of the result !

Cheers,

F.

  • Author

Thanks !! This works perfectly...

Cheers !

F.

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.