Fishboy
Well-known Member
- Joined
- Feb 13, 2015
- Messages
- 4,267
Hi all,
I am currently using the following formula in Excel 2010:
=INDEX('Contact History'!C:C,(MODE(MATCH(C:C,C:C,0))))
What it does is look at the sheet called "Contact History", checks column C and reports the most common contact name. So far so good.
What I am trying to add in to the mix is for it to also check "Contact History" column A for a date range (say 01/01/15 to 31/01/15 for example) first, then report the most common contact name within that date range.
Is there a way to add the following?:
'Contact History'!$A:$A,">="&DATE(2015,1,1),'Contact History'!$A:$A,"<="&DATE(2015,1,31))
I am currently using the following formula in Excel 2010:
=INDEX('Contact History'!C:C,(MODE(MATCH(C:C,C:C,0))))
What it does is look at the sheet called "Contact History", checks column C and reports the most common contact name. So far so good.
What I am trying to add in to the mix is for it to also check "Contact History" column A for a date range (say 01/01/15 to 31/01/15 for example) first, then report the most common contact name within that date range.
Is there a way to add the following?:
'Contact History'!$A:$A,">="&DATE(2015,1,1),'Contact History'!$A:$A,"<="&DATE(2015,1,31))