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

Data Analysis

  • How to create a Histogram in Excel
  • Conditional Formatting Color Scales Examples in Excel
  • Excel Line Chart
  • Everything about Charts in Excel
  • How to sum a total in multiple Excel tables

References

  • How to get relative column numbers in a range in Excel
  • Excel Advanced Lookup using Index and Match Functions
  • How to get address of named range in Excel
  • How to use Excel LOOKUP Function
  • How to get last row in mixed data with blanks in Excel

Data Validations

  • Excel Data validation with conditional list
  • Excel Data validation must contain specific text
  • Excel Data validation whole percentage only
  • Excel Data validation don’t exceed total
  • Excel Data validation allow uppercase only

Invoice status with nested if in Excel

by

This tutorial shows how to calculate Invoice status with nested if in Excel using the example below;

Formula

=IF(balance=0,"Paid",IF(current_date<due_date,"Open","Overdue"))

Explanation

To determine invoice status (i.e. paid, open, overdue), you can use a nested IF formula and the TODAY function.

In the example shown, the formula in G5 is:

=IF(F5=0,"Paid",IF(TODAY()<C5,"Open","Overdue"))

How this formula works

Note: the “current date” (i.e. today) for this example is May 31, 2016

With nested IF statements, the flow is from outer IF statements to inner IF statements, and the challenge is always to construct the flow so that the formula returns a logically correct result.

Here, the outermost IF tests first to see if the balance is zero:

=IF(F5=0

If TRUE, the formula returns “Paid”.

If not, the result of the first IF is FALSE, and another IF statement is run. This one checks to see if TODAY() is less than the due date in column C:

IF(TODAY()<C5

If TRUE, the formula returns “Open”.

If FALSE, the formula returns “Overdue”.

Post navigation

Previous Post:

COSH function: Description, Usage, Syntax, Examples and Explanation

Next Post:

Excel Data validation require unique number

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

  • FALSE function: Description, Usage, Syntax, Examples and Explanation
  • Complete List of Excel Logical Functions, References and Examples
  • How to use Excel XOR Function
  • IF with boolean logic in Excel
  • Not Equal To ‘<>‘ operator in Excel

Date Time

  • DAYS function: Description, Usage, Syntax, Examples and Explanation
  • Count dates in current month in Excel
  • YEARFRAC function: Description, Usage, Syntax, Examples and Explanation
  • Roll back weekday to Friday base on a particular date in Excel
  • How to join date and text together in Excel

Grouping

  • Calculate conditional mode with criteria in Excel
  • Map text to numbers in Excel
  • Group numbers at uneven intervals in Excel
  • Running count group by n size in Excel
  • Group times into unequal buckets in Excel

General

  • How to calculate project complete percentage in Excel
  • How to calculate total from percentage in Excel
  • Basic numeric sort formula in Excel
  • Check if range contains a value not in another range in Excel
  • Convert column number to letter in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning