Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How To Filter Data in Excel
  • Chart Axes in Excel
  • Remove Duplicates Example in Excel
  • Conflicting Multiple Conditional Formatting Rules in Excel
  • How to sum a total in multiple Excel tables

References

  • How to use Excel FORMULATEXT function
  • INDEX function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel ROW Function
  • CHOOSE function: Description, Usage, Syntax, Examples and Explanation
  • Count unique text values with criteria

Data Validations

  • Excel Data validation allow uppercase only
  • Excel Data validation don’t exceed total
  • Prevent invalid data entering in specific cells
  • Excel Data validation must begin with
  • Data validation must not exist in list

How to set check register balance in Excel

by

This tutorial shows how to set a check register formula that calculates a running balance and also, blank values using formula based on simple addition and subtraction.

See illustrations below:

Formula

=balance-debit+credit

Explanation

In the example shown, the formula in G6 is:

=G5-E6+F6

How this formula works

The value in G5 is hard-coded. The formula picks up the value in G5, then subtracts the value (if any) in E6 and adds the value (if any) in F6. When the credit or debit values are empty, they behave like zero and have no effect on the result.

When this formula is copied down column G, it will continue to calculate a running balance in each row.

Dealing with blank values

To display nothing in the balance column when the credit and debit columns are empty, you can use the IF function with AND and ISBLANK like this:

=IF(AND(ISBLANK(E6),ISBLANK(F6)),"",G5-E6+F6)

Note: this only handles bank credit and debit values at the end of the table, not rows in between.

This formula will return an empty string (“”) when both credit and debit cells are empty, and return the running balance if either number exists.

Post navigation

Previous Post:

How to calculate project complete percentage in Excel

Next Post:

Popularly Used Excel Functions and their examples

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • Not Equal To ‘<>‘ operator in Excel
  • XOR function: Description, Usage, Syntax, Examples and Explanation
  • TRUE function: Description, Usage, Syntax, Examples and Explanation
  • IF, AND, OR and NOT Functions Examples in Excel
  • IFNA function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Convert text date dd/mm/yy to mm/dd/yy in Excel
  • How to calculate Day of the Year in Excel
  • Get days before a date in Excel
  • How to calculate Next working/business day in Excel
  • How to enter Today’s Date or Static Date and Time in Excel

Grouping

  • Group numbers with VLOOKUP in Excel
  • Running count group by n size in Excel
  • How to randomly assign data to groups in Excel
  • If cell contains one of many things in Excel
  • Group arbitrary text values in Excel

General

  • How to count total columns in range in Excel
  • Count cells that do not contain many strings in Excel
  • How to increase by percentage in Excel
  • Delete Blank Rows at Once in Excel
  • How to generate random number between two numbers in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning