एक्सेल सूत्र: नेस्टेड के साथ चालान स्थिति यदि -

विषय - सूची

सामान्य सूत्र

=IF(balance=0,"Paid",IF(current_date

Summary

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()

Explanation

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()

If TRUE, the formula returns "Open".

If FALSE, the formula returns "Overdue".

दिलचस्प लेख...