cattail Posted November 13, 2011 Posted November 13, 2011 I have a field "Detected" which is a binary response, 0 or 1. The other field is Point_Type which has 5 possible values where some indicate a bird was detected (1) and some indicate a bird was not detected (0). Both are within the same table. I have over 10,000 observations. I am trying to figure out how to get Detected to autofill 0 or 1 based on the value of Point_Type. Can some one get me started? I can work the logical coding but do not know where to start. Is this a conditional value? I'm not sure if this is a calculated value either. Thanks Cat
comment Posted November 13, 2011 Posted November 13, 2011 The other field is Point_Type which has 5 possible values where some indicate a bird was detected (1) and some indicate a bird was not detected (0). And those 5 values are: ... ?
cattail Posted November 13, 2011 Author Posted November 13, 2011 They are all text values, "location_point", "location", "capture", "nest", "no detection", "search no detection", "no detection no point" Sorry it really isn't 5, I didn't think that part would matter Thanks
comment Posted November 13, 2011 Posted November 13, 2011 (edited) So, assuming "location_point", "location", "capture" and "nest" indicate a detection, while the other three do not, you could make Detected a calculation field (result is Number) = Point_Type = "location" or Point_Type = "capture" or Point_Type = "nest" or shortly: not IsEmpty ( FilterValues ( Point_Type ; "location¶capture¶nest" ) ) Edited November 13, 2011 by comment
Recommended Posts
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