Formula

G

Glenn Robertson

I have a formula to look at a Row B (which has a value in
£'s)that will tell me how many in that coloumn are under
£500.00.

C1: Countif(B:B,"<500")

but i need a formula that will tell me how many are over
£500 but under £1000

or over £1000 but under £25,000
 
D

Don Guillett

try
=sumproduct((b2:b200>500)*(b2:b200<1000))

--
Don Guillett
SalesAid Software
(e-mail address removed)
I have a formula to look at a Row B (which has a value in
£'s)that will tell me how many in that coloumn are under
£500.00.

C1: Countif(B:B,"<500")

but i need a formula that will tell me how many are over
£500 but under £1000

or over £1000 but under £25,000
 
N

Norman Harker

Hi Glenn!

Try:
=COUNTIF(B:B,">="&500)-COUNTIF(B:B,">="&1000)
And:
=COUNTIF(B:B,">="&1000)-COUNTIF(B:B,">="&25000)

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
J

Jonathan Rynd

I have a formula to look at a Row B (which has a value in
œ's)that will tell me how many in that coloumn are under
œ500.00.
but i need a formula that will tell me how many are over
£500 but under £1000

C2: =COUNTIF(B:B,">=500")-COUNTIF(B:B,">=1000")
or over £1000 but under £25,000

C3: =COUNTIF(B:B,">=1000")-COUNTIF(B:B,">=25000")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Countif Formula 5
Excel function 4
Countifs bites again 4
Excel 2
Redistribution of values after reaching maximum 4
[ask] Quartile and Frequency 0
help with sum / count formula 9
Formula returning an error 2

Top