Formulas
Formulas start with = and calculate a value from numbers, text, dates, booleans, cell references, ranges, and functions.
Examples
Section titled “Examples”=B1-C1=SUM(B1:B12)=SUM('Budget 2026'!B2:B13)=IF(D2>0, "Profit", "Loss")=XLOOKUP(A2, Projects!A1:A20, Projects!B1:B20, "Missing")=TEXTJOIN(", ", TRUE, A2:A5)Use cell addresses like A1, B4, and AA10. Use ranges like A1:A10 and B2:D6. Reference another sheet with Sheet2!A1 or quote names with spaces, such as 'Budget 2026'!A1.
Formula Help
Section titled “Formula Help”When you type a formula, MikroSheets can show function suggestions and signatures near the formula bar.
Common Patterns
Section titled “Common Patterns”- Use
SUMfor totals. - Use
SUMIF,COUNTIF, andAVERAGEIFfor conditional summaries. - Use
AVERAGE,MIN,MAX, andMEDIANfor summaries. - Use
IFandIFERRORto make formulas easier to read. - Use
XLOOKUPto pull matching values from another table or sheet. - Use
UNIQUE,SORT, andFILTERfor lightweight list analysis. - Use text functions like
CONCAT,TEXTJOIN,LEFT,RIGHT, andSUBSTITUTEto clean or combine labels. - Use date functions like
TODAY,DATE,YEAR,MONTH, andDAYfor date-based work.
Errors
Section titled “Errors”MikroSheets shows a formula error in the cell when a calculation cannot complete.
#DIV/0!means the formula divided by zero.#CYCLE!means cells refer back to each other in a circular chain.- Other parser or function messages usually point to an unsupported function, an invalid argument count, or a malformed formula.
When an error appears, check the referenced cells first. Empty cells, text where a number is expected, and accidental self-references are common causes.