Functions in OpenOffice Calc
Can you explain functions in Calc? I'm used to using Microsoft Office's Excel. Does it work differently?

    Requires Free Membership to View

    When you register, my team of editors will also send you resources covering Linux administration and management; integration and interoperability between Linux, Windows and Unix; securing Linux and mixed-platform environments; and migrating to Linux.

    Margie Semilof, Editorial Director

    By submitting your registration information to SearchEnterpriseLinux.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchEnterpriseLinux.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

Functions in Calc work very similarly to functions in Microsoft Office Excel. You type "=," then the function such as SUM or AVERAGE. The syntax is typically all within a set of parentheses. A colon separates a range of numbers, like A1 - A9, and semicolons separate individual numbers, like A1;A5;A9.

=SUM(A1:A2)   (the sum of the numbers in the range A1 to A9)
=AVERAGE(A1:A9)  (the average of the numbers in the range A1 to A9)
=SUM(A1;A5;A11)  (the sum of the numbers in the cells A1, A5, and A11)
=AVERAGE(A1;A5;A11)  (the average of the numbers in the cells A1, A5, and A11)

If you want to find all the functions, click the function icon on the toolbar at the left end of the main toolbar. You'll get a window listing all the functions. Select a function to get a defintion; then double-click the function to see fields that help walk you through using that function.

This was first published in April 2007