cfalab Posted July 10, 2008 Posted July 10, 2008 Hey Guys - I have a database that serves as a rental system, and there's a field that counts the number of time conflicts with each new reservation. I want to create a new field that will check the conflict field for all existing records and enter "Yes" if there is a record with a conflict number higher than 5, and "No" if there is no number higher than 5. Any tips on what function/calculation to use? Thanks a lot.
Fitch Posted July 11, 2008 Posted July 11, 2008 To work with all records you'd need a Cartesion relationship (i.e. the "x" option in the relationship dialog). Then I suppose: Case( Max(related::conflict) > 5; "Yes"; "No" )
Recommended Posts
This topic is 5978 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