Nestor Posted September 5, 2007 Posted September 5, 2007 I have a field name "Chargeback" with 6 repetitions. each repetition has a drop down with 2 options. "P" and "R". My goal is that if all 6 Repetitions have R this will trigger another field called "status" to have the Letter "R", but if any of the 6 repetitions for chargeback have a "P". i want the Status field to show the Letter "P". I hope i'm making sense. Thanks in advance. Nestor
comment Posted September 5, 2007 Posted September 5, 2007 What should the result be when SOME repetitions have "R", and others are empty?
comment Posted September 5, 2007 Posted September 5, 2007 OK, then it seems we are down to a single condition: one or more P's result in a P, otherwise R. If so, try: Case ( IsEmpty ( FilterValues ( List ( RepeatingField ) ; "P" ) ) ; "R" ; "P" )
Recommended Posts
This topic is 6349 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