Excel Lookup : Reference Formulas for Beginners
Microsoft Office apps like Word, Excel, and PowerPoint are essential tools for students and beginners in school, college, and early careers.

πŸ”Ή Basic Excel Logical Formulas for Beginners (With Easy Examples)

πŸ”Ή Basic Excel Logical Formulas for Beginners (With Easy Examples)

Logical formulas in Excel help you make decisions based on conditions β€” just like saying β€œif this happens, do that. It is great for grading, checking values, or showing specific results automatically.

  1. IF – Test a Condition

Checks if something is true or false, and shows a result based on that.
Formula: =IF(A1>100, “High”, “Low”)
πŸ‘‰ Example: If A1 = 120, result = High; if A1 = 80, result = Low

  1. IFS – Test Many Conditions

Lets you check multiple conditions in one formula.
Formula: =IFS(A1>90,”A”, A1>80,”B”, A1>70,”C”)
πŸ‘‰ Example: Gives a grade based on score β€” A, B, or C.

  1. AND – Check If All Are True

Returns TRUE only if all conditions are met.
Formula: =AND(A1>50, B1<100)
πŸ‘‰ Example: If A1 = 60 and B1 = 90 β†’ TRUE, otherwise FALSE

  1. OR – Check If Any Is True

Returns TRUE if any one of the conditions is met.
Formula: =OR(A1>50, B1<100)
πŸ‘‰ Example: If either A1 > 50 or B1 < 100 β†’ TRUE

  1. NOT – Reverse a Condition

Turns TRUE into FALSE and FALSE into TRUE.
Formula: =NOT(A1>10)
πŸ‘‰ Example: If A1 = 15 β†’ FALSE, because A1 is greater than 10.

  1. IFERROR – Handle Errors Nicely

Shows a custom message or value if a formula gives an error.
Formula: =IFERROR(A1/B1, “Error”)
πŸ‘‰ Example: If B1 = 0, instead of showing #DIV/0!, Excel shows Error

πŸ’‘ Quick Tip:

Logical formulas are super useful when you combine them.
Example:

=IF(AND(A1>50, B1>50), “Pass”, “Fail”)

πŸ‘‰ Checks two scores and shows β€œPass” only if both are above 50.

stay tune with ITInsite to get more continue update….

Comments

No comments yet. Why don’t you start the discussion?

    Leave a Reply

    Your email address will not be published. Required fields are marked *