Ben Ball Posted May 5, 2009 Posted May 5, 2009 I am trying to calculate a value as an "If" function but I can't seem to get it to work... I am trying to create a calculation that will take in consideration the following. If a "date_field" is between dates1 and dates 2, calculate result, If a "date_field" is between Dates3 and Dates 4, calculate result. I cannot seem to get this 2 work... I can view records in table based on a date from and to but cannot work out the calculation for this result.. TIA
jstaphse Posted May 5, 2009 Posted May 5, 2009 Does this work? Case (Date_Field ≤ Date1 and Date_Field ≥ Date2;result1;Date_Field ≤ Date3 and Date_Field ≥ Date4;result2;default result)
LaRetta Posted May 5, 2009 Posted May 5, 2009 Does this work? Case (Date_Field ≤ Date1 and Date_Field ≥ Date2 ; result1 ; Date_Field ≤ Date3 and Date_Field ≥ Date4 ; result2 ; default result) I don't believe that fits the criteria of 'between'. [color:gray]Date_Field ≤ Date1 and Date_Field ≥ Date2 To get between (inclusive), I would suggest reversing, as: Date_Field [color:red]≥ Date1 and Date_Field [color:red]≤ Date2 ; result1. I assume that's what you meant but I wanted to clarify. :wink2:
Ben Ball Posted May 5, 2009 Author Posted May 5, 2009 Thanks jstaphse, and yes to clarify, and I always put these wrong way round first of all... LaRettas adjustment is correct... This works perfectly, thankyou.
jstaphse Posted May 5, 2009 Posted May 5, 2009 Thanks for correcting that LaRetta. I knew it was too early for that reply. ???
Recommended Posts
This topic is 5740 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