70 likes | 266 Vues
IF Functions. Use flowcharts to ensure proper construction IF (hours worked>40, calculate overtime, overtime is 0). Hours worked > 40. Overtime = 0. Calculate Overtime. . . . . True. False. Nested IF Functions. IF functions evaluates one condition and two alternatives Use AND, OR, and NOT to tes
                
                E N D
1. Conditional Formulas using the IF Function IF (logical_test, value_if_true, value_if_false)
Can only compare two expressions
Comparison operators
Less than                      <
Greater than                  >
Less than or equal to      <=
Greater than or equal to  >=
Equal to                         =
Not equal to                   <>
 
2. IF Functions Use flowcharts to ensure proper construction IF (hours worked>40, calculate overtime, overtime is 0)