About 861,000 results
Open links in new tab
  1. Range.Find method (Excel) | Microsoft Learn

    Mar 30, 2022 · The Find method does not affect the selection or the active cell. The settings for LookIn, LookAt, SearchOrder, and MatchByte are saved each time you use this method.

  2. VBA Find Range in Excel (Range.Find) - Automate Excel

    May 29, 2024 · Learn how to use Range.Find in VBA to search for specific values within Excel. Discover how this powerful tool can streamline your data analysis process.

  3. VBA to Find Value in Range in Excel (Explained with Examples)

    Using the ‘Range.Find’ method in Excel VBA is, in effect, the same as using Excel’s ‘Find and Replace’ feature. In this tutorial, I will show you some examples of using VBA to find a value in a range.

  4. How to Find a Value in a Column with Excel VBA - Excel Insider

    Oct 16, 2025 · VBA lets you automate and tailor each search so you get the exact result you need. In this article, you will learn four practical VBA methods to find values in a column.

  5. VBA Find Excel - How to use this Function? (Examples)

    Guide to VBA Find Function. Here we learn how to use Excel VBA find function with practical examples and downloadable excel sheet.

  6. How to Find a text within a Range Using VBA in Excel – 4 Methods

    Aug 14, 2024 · Finding an Exact Match Within a Range with VBA in Excel (Case-Insensitive Match) Find all books by Charles Dickens. This is the VBA code: If LCase(Selection.Cells(i, Matching_Column)) = …

  7. Excel VBA FIND Function - Xelplus - Leila Gharani

    Jul 12, 2018 · Find out how to use the FIND function in Excel VBA. This can be more effective than looping through large data ranges. VBA also results in error if the value is not found. How can you …

  8. VBA Find Function in Excel - GeeksforGeeks

    Dec 8, 2023 · Then, you can write the VBA code using the 'Find' method to search for the desired data. Specify the Search parameters such as the value to find, the range to search within, and other …

  9. Find Cell in Range using VBA

    In its basic form Find is called like the code below, which selects the found cell. The code will only work if the value actually is present on the worksheet. Note: To keep the sample code short we use the …

  10. How to Use "Find" in Excel VBA Macros: 9 Steps (with Pictures)

    Dec 6, 2025 · You will learn to use "Find" for your macros written in Excel Visual Basic for Applications (VBA).