Method GetCellRow
Gets the row number of a cell with the input text
Usage
Function GetCellRow(
String CellText
)
Parameters
CellText
Type: String
Text to look for
Returns
Row number as Integer value
Example
Lets take a table on the view with next information:
FieldName | FieldValue |
---|---|
Name | John Smith |
Phone | (123)456-7890 |
jsmith@zap.com |
We will find Email row
VBScript
tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").GetCellRow("Email")
'tableRowNumber is 4
JavaScript
var tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").GetCellRow("Email");
// tableRowNumber is 4

Variable
rowNumber

GetCellRow
Comment
Get row number with text "Email" and save it to variable