LibreOffice 25.2 Help
All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions.
Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the "Multiplication and Division before Addition and Subtraction" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1.
कोष्ठकों का भी इस्तेमाल किया जा सकता है. सूत्र =(1+2)*3 का परिणाम सूत्र =1+2*3 से भिन्न होगा.
LibreOffice कॅल्क सूत्र के कुछ उदाहरण ये हैं:
| =A1+10 | कक्ष A1 की सामग्री धन 10 को दिखाता है. | 
| =A1*16% | A1 की सामग्री के 16% को दिखाता है. | 
| =A1 * A2 | A1 तथा A2 के गुणनफल को दिखाता है. | 
| =ROUND(A1;1) | Displays the contents of cell A1 rounded to one decimal place. | 
| =EFFECTIVE(5%;12) | 5% वार्षिक नॉमिनल ब्याज दर के साथ प्रतिवर्ष 12 भुगतान के लिए प्रभावी ब्याजदर की गणना करता है. | 
| =B8-SUM(B10:B14) | Calculates B8 minus the sum of the cells B10 to B14. | 
| =SUM(B8;SUM(B10:B14)) | कक्ष B10 से लेकर कक्ष B14 के योग की गणना करता है तथा इस मूल्य को B8 में जोड़ता है. | 
It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions.