Article ID: 299036 - Last Review: January 31, 2007 - Revision: 6.1 How to loop through a list of data on a worksheet by using macros in ExcelThis article was previously published under Q299036 On This PageSUMMARY When you write a Microsoft Visual Basic for Applications
(VBA) macro, you may have to loop through a list of data on a worksheet. There
are several methods for performing this task. The "More Information" section of
this article contains information about the methods that you can use to search
the following types of lists:
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. The following code samples assume that the list has
a header row that starts in cell A1 and data that starts in cell A2. To Search a List with a Constant, Known Number of RowsThis code moves down column A to the end of the list:To Search a Dynamic List or a List with an Unknown Number of RowsThis code moves down column A to the end of the list. (This code assumes that each cell in column A contains an entry until the end.)To Search a List for a Specific RecordThis code moves down column A to the end of the list: | Article Translations
|
Back to the top
