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 7105 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I'm using the following calcualtion to determine the pay for an instructor based on the number of days a student was enrolled in a course before he/she dropped. This works, but what i can't figure it out is how to make it ONLY look for those students who have a date in Date Dropped. the way I have it setup now it looks through all students.

If (Date Dropped - Date Enrolled >= 60, 50, 25)

I'd love some help.

Posted

Try wrapping your calc inside a not IsEmpty ( Date Dropped ) condition, e.g.

Case (

not IsEmpty ( Date Dropped ) ;

Choose ( Date Dropped - Date Enrolled < 60 ; 50 ; 25 )

)

Posted

Thanks for everyone's help. here's what I've got from your suggestions. And I should preface this by saying that I am using FileMaker 4.

Solution #1 suggestion:

Case (

not IsEmpty ( Date Dropped ) ;

Choose ( Date Dropped - Date Enrolled < 60 ; 50 ; 25))

Error message:

Either an operator was omitted, this function, cannot be found, or "(" was not expected here. (it highlights "Choose")

Solution #1 suggestion:

If( not IsEmpty(DateDropped);

If( DateDropped - DateEnrolled >= 60; 50; 25 ))

Error message:

This field cannot be found. (it highlights DateDropped...this is exaclty how the field name is spelled)

Help!!! :

This topic is 7105 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.