Sheet 1 contains data entry from a user form. See data below.
A B D I
First Name Last Name Date Type
Jane Doe 1/15/15 Fall
Jane Doe 1/24/15 Behavior
Jane Doe 2/21/15 Fall
Angel Wings 1/10/15 Fall
Sheet 2 calculates the data from sheet 1 and tracks and trends the information
- Count the number of unique names based on First and Last Name. I figured out the Array formula for this one which is:
=SUM(IF(FREQUENCY(IF('Event Tracker'!A5:A1502&'Event Tracker'!B5:B1502<>"",MATCH('Event Tracker'!A5:A1502&"@"&'Event Tracker'!B5:B1502,'Event Tracker'!A5:A1502&"@"&'Event Tracker'!B5:B1502,0)),ROW('Event Tracker'!A5:A1502)-ROW(A5)+1)>0,1))
Here is where I really need help - I have tried every variation I can think of.
2.Count the number of unique patients (Col. A + Col B)
with an event occurring between a specified date based on date in col. D (>=1/1/15 and <=1/31/15)?
How many unique patient names
(Col A + Col B) had a Fall (Col I)?
How many unique patient names
(Col A + Col B) had a Fall (Col I) between >=1/1/15 and <=1/31/15
based on the date in column D?