PDF2XL

Automate Excel

Hundreds of Excel Tips & Tricks
Welcome to AutomateExcel - the home of Excel information. Our little site is packed with hundreds of useful Excel articles. Anywhere from Excel Formulas and Excel Templates to advanced VBA, we've got it all. So sit back, take a load off - and let the information flow!
Recommended Links:


Excel’s SUMIF formulae allows you to obtain the sum of a range of values that meet certain criteria. For example:

If we wanted to obtain the total number of Cars then we could use SUMIF:
=SUMIF(B5:B12,”Cars”,D5:D12)
and if we wanted to obtain the total vehicles in Cambridge we could use:
=SUMIF(A5:A12,”Cambridge”,D5:D12)
However what would we do if we wanted [...]

Ranking Values
icon1 Kaps | icon2 Formulas | icon4 09 5th, 2008| icon3No Comments »

Imagine that we have the following data:

And we want to find the people with the highest 3 marks. Note for this example, we will assume that there are no two people with exactly the same score.
The function RANK allows us to do this. It needs 2 arguments – the cell that we are comparing [...]

Double SUMIF
icon1 Kaps | icon2 Formulas | icon4 09 5th, 2008| icon3No Comments »

Consider the following table of data:

If we want to find the total of all the Lorries then we could use the SUMIF function:
E25 = SUMIF(A5:A20,”Lorries”, E5:E20)
Like so:

And likewise we could total all the red vehicles:
=SUMIF(C5:C20,”Red”,E5:E20)
However what about if we wanted the total of all the YELLOw Vehicles in London ? There are in fact [...]

« Previous Entries