sumproduct question

maheshr68

Board Regular
Joined
Sep 25, 2009
Messages
68
Greetings!!

=SUMPRODUCT((F1:F15928,"18/2/2011")*(k1:k15928="*emoved")*(L2:L6152="*ishwa*"))

am i messing anything? cant get it to work

Best Regards,
Mahesh
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Greetings!!

=SUMPRODUCT((F1:F15928,"18/2/2011")*(k1:k15928="*emoved")*(L2:L6152="*ishwa*"))

am i messing anything? cant get it to work

Best Regards,
Mahesh
A few things wrong with that...

The "date" is not being evaluated as a true Excel date. Put the date in a cell then refer to that cell.

SUMPRODUCT doesn't support wildcards. Use cells to hold the criteria.

One range is not the same size as the other ranges: L2:L6152

All ranges must be the same size.

What version of Excel are you using?
 
Upvote 0
Greetings!!

=SUMPRODUCT((F1:F15928,"18/2/2011")*(k1:k15928="*emoved")*(L2:L6152="*ishwa*"))

am i messing anything? cant get it to work

Best Regards,
Mahesh

That formula is not well-formed...

Do you mean something like

=COUNTIFS(F1:F15928,DATE(2011,2,18),K1:K15928,"*emoved",L1:L15928,"*ishwa*")

on Excel 2007 or later;

Or...
Code:
=SUM(
    IF(F1:F15928=DATE(2011,2,18),
    IF(ISNUMBER(SEARCH("emoved",K1:K15928)),
    IF(ISNUMBER(SEARCH("ishwa",L1:L15928)),1))))

This one works on all versions and requires that you confirm it with control+shift+enter, not just enter.
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,789
Members
452,942
Latest member
VijayNewtoExcel

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top