Table.FindNextRow method (Outlook)

Finds the next row in the Table that meets the criteria specified in a preceding Table.FindRow.

Syntax

expression. FindNextRow

expression A variable that represents a Table object.

Return value

A Row object that represents the next row in the Table that meets the filter condition in the preceding call to FindRow. Returns Null (Nothing in Visual Basic) if FindNextRow cannot find another row that meets the criteria specified in FindRow. Also returns Null if FindRow has not been called before FindNextRow.

Remarks

FindNextRow finds the next row based on the row returned by the preceding FindRow or FindNextRow. It does not depend on the current row (as the current row may have been repositioned since the preceding FindRow or FindNextRow, for example, by Table.MoveToStart).

If FindNextRow finds a row, it will position the current row to that row. If it does not find another row, it will not reposition the current row.

See also

Table Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.