agaperrk Posted January 30, 2012 Posted January 30, 2012 I have two dates the current date today and an expiration of a certificate.... I need a calculation to give me a flag to say Renew, or expired..... Renew if the current date is less than 30 from the expiration and if it past the date in the field to say Expired. Thanks in Advance. Randy,
LaRetta Posted January 30, 2012 Posted January 30, 2012 Hi Randy, You can try this calculation (result is text) and be sure to set it to unstored: Case ( ExpirationDate < Get ( CurrentDate ) ; "Expired" ; ExpirationDate - 30 < Get ( CurrentDate ) ; "Renew" )
Recommended Posts
This topic is 4738 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