Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 5299 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

Looking for quick help.

I've set up the following fields:

DAYS OUTSTANDING (this returns a calculated number result based on the number of days since the booking date).

late fee 1 = 22 late fee 2 = 33 late fee 3 = 66.

NOW: = Late Fee Calculated (this field should display the relevant late fee for a particular record, based on the number displayed in the DAYS OUTSTANDING field).

I am trying:

Case ( DAYS OUTSTANDING >14<31 ; late fee 1; DAYS OUTSTANDING >30<61 ; late fee 2; DAYS OUTSTANDING >60<91 ; late fee 3; )

===================================

If ( DAYS OUTSTANDING >14<31 ; late fee 1; )

If ( DAYS OUTSTANDING >30<61 ; late fee 2; )

If ( DAYS OUTSTANDING >60<91 ; late fee 3; )

===================================

Lookup ( DAYS OUTSTANDING {; If ( DAYS OUTSTANDING >14<31 ; late fee 1; )

If ( DAYS OUTSTANDING >30<61 ; late fee 2; )

If ( DAYS OUTSTANDING >60<91 ; late fee 3; )} )

===================================

Really need help on this one,

Thanks.

Posted (edited)

1) Comparison operators (<, >, =, etc) can can't be "stacked". It's Days>30 AND Days<61, not Days>30<61.

2) Use the first statement, the Case(), but change it per above. The way you're using If() and Lookup() doesn't make sense.

3) Learn the basics of Filemaker calculation syntax. It's not hard, but you've got misplaced semi-colons and you've got multiple functions without logical operators.

4) Change your skill level from Advanced to Entry Level or Beginner.

Edited by Guest
  • Newbies
Posted

I changed my user level to beginner.

I have had a look at Install OnTimer Script and notice the second(s) intervals to make use of it.

I want to write a cron job to enable a particular script to run every Monday morning at one minute past midnight.

Can you help me with this please?

Posted

I have had a look at Install OnTimer Script and notice the second(s) intervals to make use of it.

I want to write a cron job to enable a particular script to run every Monday morning at one minute past midnight.

Can you help me with this please?

Start a new thread.

This topic is 5299 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

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