Mickdn Posted October 19, 2014 Posted October 19, 2014 Have a Portal containing Players names (Maximum of 6). The Status field shows whether the Player is "Active or In-Active". I'm trying to get the Family Status field to show "In-Active" if all the Players are "In-Active". Currently I can only get it working if the 1st Player in the Portal is "In-Active". Â Using this calculation "Case (Players::Player Status = "In-Active" ; "In-Active" ). Â Many Thanks!
comment Posted October 19, 2014 Posted October 19, 2014 I'm trying to get the Family Status field to show "In-Active" if all the Players are "In-Active". Try something like = Case ( IsEmpty ( FilterValues ( "Active" ; List ( Players::Player Status ) ) ) ; "In-Active" ) Note: this is not the best arrangement to have. Active (or Inactive) should be either a Number field, containing 1 if true, 0 or empty otherwise, or a Date field recording the start of activity (or inactivity). 1
Recommended Posts
This topic is 3745 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