Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

Method FindRow

Finds and returns the first row number that matches the specified text

Usage

Function FindRow( 
        String RowText
)

Parameters

RowText

Type: String

The text to find

Returns

First row number that matches the specified text

Example

VBScript

emailFieldRow = "Email"
tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow(emailFieldRow)
' tableRowNumber is 4

JavaScript

var emailFieldRow = "Email";
var tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow(emailFieldRow);
// tableRowNumber is 4

Documentation Categories

ZAPTEST

FARM

LOAD