Excel Help

Associate
Joined
7 Jun 2005
Posts
2,428
Location
North East
I'm hoping some kind soul may be able to help me with an Excel calculation. I have provided a sample (http://www.filedropper.com/sample_16)

Basically it's a quotations database. Tab 'Q1' is the actual log, Tab 'Q2' is where the magic happens and the various formulas help build the analysis.

The part I need help on is follows;

I want to analyse the number of each quotations issued falling in to the specified value brackets per month. So it's like a count function by not only month, but only counting when it falls in to the value bracket criteria too. Way beyond my capability in Excel.

This will make more sense the moment you open the supplied sample file.

If by any chance the aforementioned kind soul can be any kinder, the ideal is not only the above, but actually return won, dead, lost and open counts for each month, for each bracket. Not sure if I'm being too ambitious with that request though!!
 
Last edited:
You can do this using the sumproduct formula already used in the sheet.

so for the £500 pound bracket in May.

=SUMPRODUCT(('Q1'!$B$2:$B$1049>=B$1)*('Q1'!$B$2:$B$1049<C$1)*('Q1'!$L$2:$L$1049<=500))

Basically your just putting each criteria in the brackets for each part of the equation you wish to specify.
 
Last edited:
Back
Top Bottom