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

Recommended Posts

Posted

I have a evidence database that I need to invoice. If the field PAID THRU is greater than the current date and the fields DATE DESTROYED and DATE TRANSFERRED are empty I need it to return a “Yes” in order to invoice the evidence. I can’t figure out why the following calculation for the field “TIME TO INVOICE EVIDENCE” will not work. It also needs to return a “Yes” if the field paid thru is empty and there is no data in the fields DATE DESTROYED and DATE TRANSFERRED. Please help.

If ( Cases Evidence CASENO::Paid Thru < Get ( CurrentDate ) ; "Yes" ; If (not IsEmpty(Cases Evidence CASENO::Date Destroyed) and not IsEmpty(Cases Evidence CASENO::Date Destroyed) ; "NO" ; "Can’t Figure This Out !"))

Posted

Case(

IsEmpty ( Date Destroyed ) and IsEmpty ( Date Transferred ) ;

Case(

Paid Thru > Get ( CurrentDate ) or IsEmpty ( Paid Thru ) ; "Yes" ;

"No"

) ;

"No"

)

Posted

Case(

(PAID THRU > Get(CurrentDate) or IsEmpty(PAID THRU)) and IsEmpty(Date Destroyed) and IsEmpty(Date Transferred) ; "Yes" ; "No" )

Also make sure the box "do not evaluate if all referenced fields are empty" is unchecked.

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