Need Help? Contact the Espiya Helpdesk. CLICK HERE


Author Topic: help me about MS EXCEL 2003 & 2007 formulas...  (Read 1422 times)

reinzter

  • 2007 Bravehearts
  • Active - Top Level
  • *
  • Posts: 1227
  • Karma 104
  • Gender: Male
help me about MS EXCEL 2003 & 2007 formulas...
« on: February 06, 2009, 06:08:37 am »
mga dre may alam ba kayong mga shortcuts na formula sa paggamit ng MS EXCEL 2003 and 2007

example:
@sum()

please help me po...

thx

------------>>TΓΦ 4 LiFe<<-------------

neckromancer

  • Senator Sayote
  • Staff
  • Active - Top Level
  • *
  • Posts: 3844
  • Karma 17
  • Gender: Male
  • Dungeon Master
    • Ang Aking Munting Blog
Re: help me about MS EXCEL 2003 & 2007 formulas...
« Reply #1 on: February 06, 2009, 06:34:40 am »
Anong functions ba ang gusto mong mangyari? Grading system ba? Formula ba?

gshock2kph

  • 2008 Guardians
  • Active - First Star
  • *
  • Posts: 68
  • Karma 0
Re: help me about MS EXCEL 2003 & 2007 formulas...
« Reply #2 on: February 06, 2009, 07:31:02 am »
Example: gusto mo mag.total sa lahat ng numbers in Column B, rows 1-10.

Two ways of solving that:

1.  MANUAL WAY. In column B, row 11 type the code below then press enter key.
Code: [Select]
=(B1+B2+B3+B4+B5+B6+B7+B8+B9+B10)

2. USING SUM() FUNCTION
Code: [Select]
SUM(B1+B2+B3+B4+B5+B6+B7+B8+B9+B10)

or

SUM(B1..B10)

hope that helps.

reinzter

  • 2007 Bravehearts
  • Active - Top Level
  • *
  • Posts: 1227
  • Karma 104
  • Gender: Male
Re: help me about MS EXCEL 2003 & 2007 formulas...
« Reply #3 on: February 07, 2009, 12:24:46 am »
Example: gusto mo mag.total sa lahat ng numbers in Column B, rows 1-10.

Two ways of solving that:

1.  MANUAL WAY. In column B, row 11 type the code below then press enter key.
Code: [Select]
=(B1+B2+B3+B4+B5+B6+B7+B8+B9+B10)

2. USING SUM() FUNCTION
Code: [Select]
SUM(B1+B2+B3+B4+B5+B6+B7+B8+B9+B10)

or

SUM(B1..B10)

hope that helps.
thx pano naman kung subtraction o multiplication and division ano formula nya?

------------>>TΓΦ 4 LiFe<<-------------

gshock2kph

  • 2008 Guardians
  • Active - First Star
  • *
  • Posts: 68
  • Karma 0
Re: help me about MS EXCEL 2003 & 2007 formulas...
« Reply #4 on: February 07, 2009, 06:44:36 am »
thx pano naman kung subtraction o multiplication and division ano formula nya?

Basic Operators to be used:

* (multiplication)
/ (division)
+ (addition)
- (substraction)

if you have a formula you can use the = (equal symbol) enclosed within parenthesis.

Example:

Code: [Select]
=(SUM(B1:B10)/(COUNT(B1:B10))*2)