Advanced Excel Formulas
Advanced Excel Formulas
ROUND
FORECAST
GROWTH
DSUM
ROUND
The first thing to understand is that Excel will display values with any number of decimals
we choose. So for instance, if we have the value 100.4587 in a cell, we can choose to format
it to print only 2 decimals, so that what is displayed is 100.46. This can be confusing to users
since they don't see the true value. It can also be a problem, particularly with currency
values, with a column of figures not balancing to the total below. Accountants hate this ! Of
course, if we choose to display more decimal places, the sum below will balance to the
column above. The displayed value is rounded but the actual value is still multiple decimals.
What the ROUND function does is to force the number of decimals in the actual figure. So
in our example above, the 100.4587 would be forced to round to 100.46, which means the
displayed value is the same as the actual value.
1200
Y AXIS (SALES
1000
VALUES)
800
600 SALES
400
200
0
1 2 3 4 5
X AXIS (YEARS)
A B C D E F
1 1 2 3 4 5 6
2 50 200 350 600 1000
1200
Y AXIS (SALES
1000
VALUE)
800
600 SALES
400
200
0
1 2 3 4 5 6
X AXIS (YEARS)
Notice the new value in the graph for year 6. The value is really an averaged estimate based
on the preceding 5 years. If we wanted something a little more realistic in this case (because
of the exponential nature of the curve) we might be better off using the GROWTH function.
The format is :
2000
Y AXIS (SALES
1500
VALUE)
1000 SALES
500
0
1 2 3 4 5 6
X AXIS (YEARS)
=DSUM(data-range,column-id,criteria cells)
where "data-range" is the address of the database area including the field headings
"column-id" can be the column heading name in inverted commas, or a number
indicating the appropriate column within the database
"criteria cells" indicates the address of the cells containing the selection criteria
A B C
1 DEPT VALUE
2 Y 20
3 X 40
4 Y 10
5 Z 60
6 X 50
7 Z 30
8 X 80
9
10 DEPT
11 X
12
=DSUM(A1:B8,"VALUE",A10:A11) or =DSUM(A1:B8,2,A10:A11)
This could be placed in any desired cell, but let's choose C10