First, I appologise if this has been asked before. I have spent the last few days looking, but I haven't found my answer.
I have to find a way to pull table data for ONLY people that meet a specific criteria a set number of times. Here is an example:
Data:
Name YearOfTest Result
Joe 2003 Fail
Joe 2004 Pass
Joe 2005 Fail
John 2003 Fail
John 2004 Fail
John 2005 Pass
Mary 2003 Fail
Mary 2004 Pass
Mary 2005 Fail
Jane 2003 Fail
Jane 2004 Pass
Jane 2005 Pass
I need to be able to have the report return the members (and all of their data) that have failed at least twice and also failed in 2005. With the data above, the report should look like:
Report:
Name YearOfTest Result
Joe 2003 Fail
Joe 2004 Pass
Joe 2005 Fail
What I HAVE is a report that will show Joe, John and Mary and HIDE Jane (because her COUNT is less than 2). It doesn't take date into account at all.
I am completely stumped.
Thank you!
Joe
I have to find a way to pull table data for ONLY people that meet a specific criteria a set number of times. Here is an example:
Data:
Name YearOfTest Result
Joe 2003 Fail
Joe 2004 Pass
Joe 2005 Fail
John 2003 Fail
John 2004 Fail
John 2005 Pass
Mary 2003 Fail
Mary 2004 Pass
Mary 2005 Fail
Jane 2003 Fail
Jane 2004 Pass
Jane 2005 Pass
I need to be able to have the report return the members (and all of their data) that have failed at least twice and also failed in 2005. With the data above, the report should look like:
Report:
Name YearOfTest Result
Joe 2003 Fail
Joe 2004 Pass
Joe 2005 Fail
What I HAVE is a report that will show Joe, John and Mary and HIDE Jane (because her COUNT is less than 2). It doesn't take date into account at all.
I am completely stumped.
Thank you!
Joe