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.

๐Ÿ”น Excel Lookup : Reference Formulas for Beginners (With Easy Examples)

๐Ÿ”น Excel Lookup : Reference Formulas for Beginners (With Easy Examples)

MS Excel Lookup formulas help you find and display data from different parts of your Excel sheet.
Perfect for searching, matching, or picking values automatically โ€” saving tons of time when working with large tables.

  1. VLOOKUP โ€“ Search Vertically

Looks for a value in the first column of a table and returns a result from another column.
Formula: =VLOOKUP(A1, B1:D10, 3, FALSE)
๐Ÿ‘‰ Example: Find a product name (A1) and return its price from the third column.

  1. HLOOKUP โ€“ Search Horizontally

Similar to VLOOKUP, but searches across rows instead of columns.
Formula: =HLOOKUP(A1, A2:F3, 2, FALSE)
๐Ÿ‘‰ Example: Looks for a header value and returns a result from the row below.

  1. INDEX โ€“ Pick a Value by Row and Column

Returns the value from a specific row and column inside a range.
Formula: =INDEX(A1:C10, 2, 3)
๐Ÿ‘‰ Example: Gets the value from row 2, column 3 of the table.

  1. MATCH โ€“ Find a Valueโ€™s Position

Shows the position number of an item within a list or range.
Formula: =MATCH(“Apple”, A1:A10, 0)
๐Ÿ‘‰ Example: If โ€œAppleโ€ is in A5, the result = 5

  1. XLOOKUP โ€“ The New & Better Lookup

Replaces both VLOOKUP and HLOOKUP. Itโ€™s more flexible and easier to use.
Formula: =XLOOKUP(A1, B1:B10, C1:C10, “Not Found”)
๐Ÿ‘‰ Example: Looks up the value in A1 and returns a match from column C.
If not found, shows โ€œNot Foundโ€.

  1. OFFSET โ€“ Move from a Starting Cell

Returns a cell (or range) thatโ€™s a specific number of rows and columns away from a starting point.
Formula: =OFFSET(A1, 2, 3)
๐Ÿ‘‰ Example: Moves 2 rows down and 3 columns right from A1.

  1. CHOOSE โ€“ Pick from a List

Selects a value based on a position number you give it.
Formula: =CHOOSE(2, “Red”, “Blue”, “Green”)
๐Ÿ‘‰ Example: Since the index is 2, result = Blue

๐Ÿ’ก Quick Tip:

  • Use INDEX + MATCH together for more flexible lookups:
  • =INDEX(C1:C10, MATCH(A1, B1:B10, 0))

๐Ÿ‘‰ This combo is more powerful and accurate than VLOOKUP!

Keep stay with itinsite.in to get more update in contโ€ฆ.

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 *