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

Recommended Posts

Posted

Being the challenged FM user that I am... I can't seem to get a certain field definition calculation written - is someone willing to assist with "defining" the following?

If there is a date in the "Due to HQ" field, then:

If the "DRS Load" field date is after the "Due to HQ" field date, then result is "Submission Missed"

It the "DRS Load" field date is on/before the "Due to HQ Field" date, then result is "Submitted Timely"

If there is no date in the "Due to HQ" field, then result is empty

Posted


Case ( IsEmpty (Trim (Due to HQ)) , "" , 

       DRS Load >Due to HQ, "Submission Missed", 

       DRS Load <= Due to HQ, "Submitted Timely", 

     )

Posted

You can check if a DATE field is not empty simply by:

Case ( DateField , result )

Applied to the current example:

Case ( Due to HQ ,

Case ( DRS Load > Due to HQ , "Submission Missed" , "Submitted Timely" )

)

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