So far my formula (non-working) is as follows.
=SUM(IF(FREQUENCY(IF(CritDateTest<=CritOutDate AND IF(ISNUMBER(SEARCH(Vuln1,CritVulnTitleTest)),MATCH(CritIPTest,CritIPTest,0)))),ROW(CritIPTest)-ROW(CritIPBeginTest)+1),1))
or
=SUM(IF(FREQUENCY(IF(CritDateTest<=CritOutDate,IF(ISNUMBER(SEARCH(Vuln1,CritVulnTitleTest),MATCH(CritIPTest,CritIPTest,0))),ROW(CritIPTest)-ROW(CritIPBeginTest)+1),1))
Where named =
CritDate = date column range
CritOutDate = date to compare to
CritVulnTitleTest = text range that can long string of words
vuln1 = specific word to search for in the above title cell, may be at the beginning of the string or middle.
CritIP = IP address range (No Blanks so I do not have to use CritIP<>"")
CritIPBegin = First cell in range above
I already have a formula that does works for another calculation WITHOUT adding in the text search criteria. This gives me the combined total of all that fall within the date and are unique, but I cannot get the formula to run correctly once I try to add in the additional 'and' text criteria before the Match.
=SUM(IF(FREQUENCY(IF(CritODates<=CritOutDate,MATCH(CritIP,CritIP,0)),ROW(CritIP)-ROW(CritIPBegin)+1),1))
I've been banging my head on this for awhile now... the ranges are in the 10's of thousands of rows, and it Crunches the numbers a LONG TIME... we are working on a different way to aggregate this data, but it is not ready yet and I'm tired of doing all these counts manually. There may be an easier way to spit this out, so I'm not against changing the base of how I do it if it's necessary or would calculate the totals faster.
=SUM(IF(FREQUENCY(IF(CritDateTest<=CritOutDate AND IF(ISNUMBER(SEARCH(Vuln1,CritVulnTitleTest)),MATCH(CritIPTest,CritIPTest,0)))),ROW(CritIPTest)-ROW(CritIPBeginTest)+1),1))
or
=SUM(IF(FREQUENCY(IF(CritDateTest<=CritOutDate,IF(ISNUMBER(SEARCH(Vuln1,CritVulnTitleTest),MATCH(CritIPTest,CritIPTest,0))),ROW(CritIPTest)-ROW(CritIPBeginTest)+1),1))
Where named =
CritDate = date column range
CritOutDate = date to compare to
CritVulnTitleTest = text range that can long string of words
vuln1 = specific word to search for in the above title cell, may be at the beginning of the string or middle.
CritIP = IP address range (No Blanks so I do not have to use CritIP<>"")
CritIPBegin = First cell in range above
I already have a formula that does works for another calculation WITHOUT adding in the text search criteria. This gives me the combined total of all that fall within the date and are unique, but I cannot get the formula to run correctly once I try to add in the additional 'and' text criteria before the Match.
=SUM(IF(FREQUENCY(IF(CritODates<=CritOutDate,MATCH(CritIP,CritIP,0)),ROW(CritIP)-ROW(CritIPBegin)+1),1))
I've been banging my head on this for awhile now... the ranges are in the 10's of thousands of rows, and it Crunches the numbers a LONG TIME... we are working on a different way to aggregate this data, but it is not ready yet and I'm tired of doing all these counts manually. There may be an easier way to spit this out, so I'm not against changing the base of how I do it if it's necessary or would calculate the totals faster.