Verify Column Value
This is a pre-built action in Avo Assure, this action validates whether a specific value is present in All rows of a designated column in a table, and result is save in the dynamic variable.
Syntax
Input Value: <Column Header>;Value;Allrow(Optional)
Column Header
(Required)
The Column name which we want to search for value
Value
(Required)
The value which we want to search
Allrow
(Optional)
This is optional parameter. It will search for value in every row of the column.
Note:
ALLROW/ANYROW, are not case sensitive
In above example: Fee Events is element in our script, Verify Column Value is action name and Input value is Account Name;ABBOTT MILK;allrow. We will search for all rows in which abbott milk text is present.
ALLROW Pass/Fail:
•If pass a value which is present in all rows in a column - It will pass
• If pass a value which is present in 1 row in a column and grid is showing only 1 row - It will pass
• If pass a value which is not present in all rows in a column - It will fail.
• If pass a value which is present in only 1 row, but rest rows have different data in a column - It will fail.
•If pass a value and grid has zero rows - It will Fail.
ANYROW Pass/Fail:
•If pass a value which is present in only 1 row, but rest rows have different data in a column - It will pass.
•If pass a value which is present in a column and grid is showing only 1 row - It will pass.
• If pass a value which is present in more than 1 row in a column - It will pass.
• If pass a value which is not present in any rows in a column - It will fail.
•If pass a value and grid has zero rows - It will fail.
Output Value:
<Dynamic Variable>(Optional)<Dynamic Variable>(Optional)
This variable holds the results in True and False
Example 1
Verifies a specific value in a table column
The Verify Column Value action takes the value from the Input Value column (e.g., Loan Type;Personal Loan) and verifies it in the Loan Type column of the table. The result of the verification is stored in the {Status} variable, with the following possible values:
Ture – if the value is found.
False –if the value is not found or an error occurs
Example 2
Verifies that a specific value is present in all rows of the specified table column.
The Verify Column Value action takes the value from the Input Value column (e.g., Loan Type;Personal Loan;Allrow) and verifies the Personal Loan value is present in all rows in the Loan Type column of the table. The result of the verification is stored in the {Status} variable, with the following possible values:
Ture – if the value is present in all row.
False –if the value is not present in all row
Last updated
Was this helpful?