2009
10.14
10.14
gwennie101 asked:
I need an easier way to explain this to people who have never used Microsoft Excel 2007. Your help is greatly appreciated.
Kristin
I need an easier way to explain this to people who have never used Microsoft Excel 2007. Your help is greatly appreciated.
Kristin

Tiffany
Well it all depends on what formula you want to setup. A simple one would be =Sum(A1+A2)
Francis
Once you have opened Excel you will find the menu bar at the top of the window. That’s the one that has file edit etc.. Clear over to the right you will find help. Open this and look in index for formulas or go to search and type in formulas and search. All the info is there you need to know.
Holly
in connection with answer(2)
the GOOD formula should be
=SUM(A1:A2)
SUM function with 1 argument refers to a range
or
=SUM(A1,A2)
SUM function with 2 arguments refers to two cells
or
=A1+A2
addition, without using worksheet function
although SUM(A1+A2) will returns right result, but it is a twice summing.