1 / 9

Logical and 3D Formulas

Logical and 3D Formulas. Lesson 5: Working with Formulas and Functions. Using Logic in Formulas .

dyami
Download Presentation

Logical and 3D Formulas

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Logical and 3D Formulas Lesson 5: Working with Formulas and Functions

  2. Using Logic in Formulas • A logical function is one that can return a true value or a false value. They are usually used in doing comparisons and seeing if things are equal to each other or not, or which is higher or lower. The logical functions that Excel provides are: TRUE FALSE AND OR NOT IF • Read more: http://wiki.answers.com/Q/Define_logical_function_in_excel#ixzz1YMRb8U4U

  3. Comparison Operators • Excel uses comparison operators in logical functions • Equal to: = • Not equal to: <> • Greater than: > • Less than: < • Greater than or equal to: >= • Less than or equal to: <=

  4. IF Statements • The IF function returns one value if a condition you specify evaluates to TRUE, and another value if that condition evaluates to FALSE. For example, the formula =IF(A1>10,"Over 10","10 or less") returns "Over 10" if A1 is greater than 10, and "10 or less" if A1 is less than or equal to 10. • Syntax: =IF(logical_test,value_if_true,value_if_false)

  5. IF Statement Logical_Test • logical_test:Any value or expression that can be evaluated to TRUE or FALSE. • For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE. This argument can use any comparison operator.

  6. IF Statements Value_IF_TRUE • value_if_true:The value that you want to be returned if the logical_test argument evaluates to TRUE. • For example, if the value of this argument is the text string "Within budget" and the logical_test argument evaluates to TRUE, the IF function returns the text "Within budget." If logical_test evaluates to TRUE and the value_if_true argument is omitted (that is, there is only a comma following the logical_test argument), the IF function returns 0 (zero). To display the word TRUE, use the logical value TRUE for the value_if_true argument.

  7. IF Statements Value_IF_False • value_if_false:The value that you want to be returned if the logical_test argument evaluates to FALSE. • For example, if the value of this argument is the text string "Over budget" and the logical_test argument evaluates to FALSE, the IF function returns the text "Over budget." If logical_test evaluates to FALSE and the value_if_false argument is omitted, (that is, there is no comma following the value_if_true argument), the IF function returns the logical value FALSE. If logical_test evaluates to FALSE and the value of the value_if_false argument is omitted (that is, in the IF function, there is no comma following the value_if_true argument), the IF function returns the value 0 (zero).

  8. 3D Formula • A reference that refers to the same cell or range on multiple worksheets is called a 3D reference. • Using 3D formulas allows you to calculate data throughout a workbook using multiple worksheets. • All 3D formulas are based on the syntax: Sheet1:Sheet4!A2:B5. • A 3D formula is a formula that refers to the same cell (or range of cells) on multiple worksheets. • The 3D formula "=SUM(Sheet1:Sheet4!A2)" can be used to add up the numbers in cell "A2" on 4 different worksheets. 3D Formula

  9. Let’s Practice • Before we practice, what questions do you have about IF Statements and 3D Formulas…….

More Related