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

  • Newbies

I am making a Filemaker program that will be used for my work. What we do is set appointments for home finial advisors to attend. There is 1 field that is the date called "Apptdate", then there is another 3 fields for Rescheduals. These are called "Apptdate2", "Apptdate3", "Apptdate4".

I have made another field called "latestappt" and what i want to do is to get Filemaker to search the 4 boxes. If "Apptdate4" is empty, copy "Apptdate3" to "latestappt", unless "Apptdate3" is empty, then copy "Apptdate2" to "latestappt" unless that is empty, then copy "Apptdate" to "latestappt".

Now i was going to make "latestappt" a calculation, however i wasnt having much luck with the else statesments in there. i know the command line

If ( Appdate4 ; Appdate4 ; Last(Appdate3) )

will paste "Appdate3" into the box "Lastappt".

i know the lines would heve to be something like this

If ( Appdate4 ; Appdate4 ; Last(Appdate3) )

else

If ( Appdate3 ; Appdate3 ; Last(Appdate2) )

else

If ( Appdate2 ; Appdate2 ; Last(Appdate) )

end if

But i get the error "This function Cannot be found".

Anyone know what i am doing wrong?

Edited by Guest

Hi

"else" isn't a function to use for calculations !

Use this calc:

Case(

not IsEmpty(Appdate4);Appdate4;

not IsEmpty(Appdate3);Appdate3;

not IsEmpty(Appdate2);Appdate2;

Appdate

)

  • Author
  • Newbies

Hi

"else" isn't a function to use for calculations !

Use this calc:

Case(

not IsEmpty(Appdate4);Appdate4;

not IsEmpty(Appdate3);Appdate3;

not IsEmpty(Appdate2);Appdate2;

Appdate

)

Head bang... I was playing around with IsEmpty but didnt think to add the Not in front. Thanks so much for the help.

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.