J. Williams Posted January 12, 2006 Posted January 12, 2006 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
mr_vodka Posted January 12, 2006 Posted January 12, 2006 Case ( IsEmpty (Trim (Due to HQ)) , "" , DRS Load >Due to HQ, "Submission Missed", DRS Load <= Due to HQ, "Submitted Timely", )
comment Posted January 12, 2006 Posted January 12, 2006 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" ) )
J. Williams Posted January 12, 2006 Author Posted January 12, 2006 (edited) Thank you, thank you, thank you! Just to clarify, I meant to thank you both! Edited January 12, 2006 by Guest Clarification
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now