Greater and Less then

peanut12341234

New Member
Joined
Sep 24, 2011
Messages
2
=SUMPRODUCT(($B$5:$K$10>D12)* ($B$5:$K$10<?XML:NAMESPACE PREFIX = F12))<?xml /><F12))<?xml:namespace ns="urn:schemas-microsoft-com:office:office" prefix="o"></F12))<?xml:namespace><?xml:namespace prefix = o /><o:p></o:p>
Gives the total cell count<o:p></o:p>
What im looking for is a total amount of the cells that are greater or less then D12 and F12…<o:p></o:p>
<o:p></o:p>
Can you help?<o:p></o:p>
<o:p></o:p>
Thanks<o:p></o:p>
<o:p></o:p>
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Try something like this.
=SUMPRODUCT(($B$5:$K$10 > D12)*($B$5:$K$10 < F12)*($B$5:$K$10))

Forum tip: put a space after the > and < signs so the forum editor doesn't interpret them as HTML code.


If you have Excel 2007 or later, you could use SUMIFS instead.
=SUMIFS($B$5:$K$10, $B$5:$K$10,">"&D12, $B$5:$K$10,"<"&F12)
 
Last edited:
Upvote 0
I think you're struggling with this site's treatment of < (and > ?) symbols, try putting the formula in code tags, and I found it helps not to put a formula as the very first thing in a message, and you could try adding a space either side of such symbols.

A guess at your question; try using the + sign instead of multiplying to get the OR function.
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,408
Members
452,912
Latest member
alicemil

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