About 925,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. Excel VBA Find – A Complete Guide - Excel Macro Mastery

    Sep 7, 2015 · This post provides a complete guide to using the Excel VBA Find function. It contains code examples for almost anything y ou want to do with VBA Find.

  4. 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.

  5. 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 …

  6. VBA Find - How To Use The FIND Function In VBA Excel? - ExcelMojo

    Guide to VBA Find. Here we explain how to use find function in Excel VBA with examples and downloadable excel template

  7. 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)) = …

  8. 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.

  9. 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 …

  10. 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 …