drrehak Posted June 25, 2009 Posted June 25, 2009 brain fart... I know I am missing something easy. I have a solution that comes up with a code based on the number of fields that are populated. easy enough with count function. My problem is that some of the criteria dictate that you can only count if 2 fields are both populated. count (field A; field B; field C & field D) i need to count 1 if field C and D are BOTH populated not either. is this possible without a case func?
comment Posted June 25, 2009 Posted June 25, 2009 Try: Count ( Field A ; Field B ) + not ( IsEmpty ( Field C ) or IsEmpty ( Field D ) )
Recommended Posts
This topic is 5689 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