Alden Dale Posted August 9, 2004 Posted August 9, 2004 Hello, I have a portal with data from another db. One of the fields is a text field that will have one of three text values (Completed, In Progress, or Pending). What calculation would allow me to determine if all the related fields in the portal contained the "Completed" entry? Sorry if this is such a simple question. I am a beginner though, so I need help with things like this.
-Queue- Posted August 9, 2004 Posted August 9, 2004 Two ways I can easily think of: One would be to create a calculation field in the related table equal to textfield = "completed", then a calculation in the parent table of Sum(rel::calc) = Count(rel::calc) to determine if every related record has 1 in the calc field. This will give 1 if true and zero if false. Another way would be to create a value list based on the related text field. Then create a calculation field of PatternCount( "
Alden Dale Posted August 9, 2004 Author Posted August 9, 2004 -Queue-, I went with the first way, and its working great. Thanks for the help!
Recommended Posts
This topic is 7412 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