Dale Super User

Joined: 21 Feb 2005 Posts: 1440 Location: Australia
|
Posted: Tue Feb 06, 2007 4:55 pm Post subject: |
|
|
Summing a range across sheets is the same as summing a range within a sheet (OOo 2.x, anyway).
So, if the sheets JAN to DEC are next to each other, with no other intervening sheets, use:
=SUM(JAN.B10:DEC.B10)
If you have one or more sheets between (say) the JUL and AUG sheets, use:
=SUM(JAN.B10:JUL.B10;AUG.B10:DEC.B10)
Similarly
=SUM(Jan.A1:Jun.C3)
will sum the range of cells between (and including) A1 to C3 on sheets Jan to Jun
HTH. _________________ Dale
To err is human, but to destroy your slippers in the process takes a real son of a bitch: Me!
OOo documentation from the source
http://documentation.openoffice.org
Guides, FAQ, How Tos |
|