SUMMARY
A nested IF statement (an IF statement within another IF statement) is used
when determining if multiple conditions are true or false. For example, in
an IF statement you are replacing the ValueIfTrue and/or the ValueIFFalse
with another IF statement.
An IF statement or nested IF statement can be used in the Spreadsheet or
Database module of Works for Windows.
Example of a Nested IF Statement
Suppose you wanted to assign a value to cell C1 based on the values
listed in cell A1 and the values in cell A1 had to meet the following
conditions:
Condition Result
------------------------------
IF A1<10 Then 150
A1<25 200
A1<50 250
A1<75 300
Else Zero (0)
You would enter the following nested IF statement in cell C1:
=IF(A1<10,150,IF(A1<25,200,IF(A1<50,250,IF(A1<75,300,0))))
If the value in cell A1 were 32, the result of the formula would be 250.
NOTE: When using a nested IF statement in the Database module, replace the cell references with the actual field names.