chlowden Posted March 11, 2008 Posted March 11, 2008 Hello. I am a newbie who has, I presume, a simple question. My db has a value list with a list of over 600 projects from another table. To avoid having all the projecs listed, I wish to limit the list to last 6 months via the creation date field in the projects table. I presume this is possible ... my question is how?
mr_vodka Posted March 11, 2008 Posted March 11, 2008 You can have an unstored calc on the parent side Let ( d = Get ( CurrentDate ); Date ( Month (d) -6 ; Day (d); Year(d) ) ) Then a ' ≤ ' join can be used between this unstored calc and the creation date field for your projects table. (You may want to use another table occurrence instead of your current projects table occurence) Now in your value list, make sure that you use the option to show only related values.
Recommended Posts
This topic is 6100 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