I have a massive excel spreadsheet of data that contains thousands of URLS and web performance data.
My table structure is:
Col B = Microsite
Col I = URLs
Col S = Total Page Views
I am trying get extract the total in range S3:S1048576 where the values in range B3:B1048576 = "xyz", and the values in range I3:I1048576 = "abc" and that value in the second range is based on a work middle of a string (in this case the URL).
This is the formula that I have now (the one that I had the highest hope for).
=SUMIFS($S$3:$S$1048576,$b$3:$b$1048576="MicrositeA",i3:i1048576=(ISNUMBER(SEARCH("Rebates")))
I also have this formula that returned the count of how many instances it found the word, but did not return the sum of the column with the monthly totals:
'=SUMPRODUCT(($b$3:$b$1048576="MicrositeA")*(i3:i1048576=ISNUMBER(SEARCH("Rebates",$i$3:$i$1048576))
Any help on this conumdrum will greatly be appreciated. I have stared at this so long and am obviously out of my depth.
Thank you very much.
My table structure is:
Col B = Microsite
Col I = URLs
Col S = Total Page Views
I am trying get extract the total in range S3:S1048576 where the values in range B3:B1048576 = "xyz", and the values in range I3:I1048576 = "abc" and that value in the second range is based on a work middle of a string (in this case the URL).
This is the formula that I have now (the one that I had the highest hope for).
=SUMIFS($S$3:$S$1048576,$b$3:$b$1048576="MicrositeA",i3:i1048576=(ISNUMBER(SEARCH("Rebates")))
I also have this formula that returned the count of how many instances it found the word, but did not return the sum of the column with the monthly totals:
'=SUMPRODUCT(($b$3:$b$1048576="MicrositeA")*(i3:i1048576=ISNUMBER(SEARCH("Rebates",$i$3:$i$1048576))
Any help on this conumdrum will greatly be appreciated. I have stared at this so long and am obviously out of my depth.
Thank you very much.