Stop manually calculating totals every time you add a row! Learn with visual screenshots and a concrete example how to connect a continuously updated Daily Log sheet to a live Summary sheet.
Keep adding daily rows without worrying about changing formula ranges.
Annotated LibreOffice screenshot graphics guiding every formula entry.
Clear math verification showing how entries sum up automatically.
This tab acts as your primary data entry log. You will continually append new transactions here throughout the day or month.
Sheet1). Select Rename Sheet... and type Daily Log.
The Summary sheet holds your unique categories (or dates) and automatically computes real-time aggregated totals from your Daily Log.
Now, enter the powerful SUMIF formula into Cell B2 of your Summary sheet.
If Column A on your Summary sheet lists Dates instead of categories, use this version:
=SUMIF('Daily Log'.A:A, A2, 'Daily Log'.C:C)
Suppose you logged 6 daily expenses across 3 different categories in your Daily Log sheet. Here is exactly how LibreOffice Calc computes the totals in your Summary sheet.
| Row | Col A (Date) | Col B (Category) | Col C (Amount) |
|---|---|---|---|
| 2 | 2026-03-20 | ๐ Food | $18.50 |
| 3 | 2026-03-20 | ๐ Transport | $12.00 |
| 4 | 2026-03-21 | ๐ Food | $32.75 |
| 5 | 2026-03-21 | ๐ก Utilities | $85.00 |
| 6 | 2026-03-22 | ๐ Transport | $15.50 |
| 7 | 2026-03-22 | ๐ฌ Entertainment | $45.00 |
| Row | Col A (Category) | Col B (Total Amount) | Calculation Math |
|---|---|---|---|
| 2 | Food | $51.25 | $18.50 + $32.75 |
| 3 | Transport | $27.50 | $12.00 + $15.50 |
| 4 | Utilities | $85.00 | $85.00 |
| 5 | Entertainment | $45.00 | $45.00 |
=SUMIF('Daily Log'.B:B, A2, 'Daily Log'.C:C) for Cell B2 ("Food"):
Calc looks down Column B of 'Daily Log' and finds rows 2 and 4 where the value is equal to "Food" (matches cell A2).
It fetches the corresponding values from Column C for those matching rows: Row 2 ($18.50) and Row 4 ($32.75).
Calc adds $18.50 + $32.75 to return $51.25 dynamically into cell B2!
Add new entries below and watch how the LibreOffice Calc SUMIF formula calculates real-time totals in the Summary tab!
| Row | Column A (Date) | Column B (Category) | Column C (Amount) | Action |
|---|
Key differences between LibreOffice Calc and Microsoft Excel when referencing sheets.
LibreOffice uses a dot (.) to separate the sheet name from the column or cell reference.
Excel uses an exclamation point (!) instead of a dot.
Daily Log), you MUST enclose it in single quotes: 'Daily Log'.
SUMIF is case-insensitive, but trailing spaces (e.g., "Food " vs "Food") will prevent matches.
B:B references the entire column so you never have to adjust row bounds when adding new entries.