Summary
This article defines the instruction skipRowIf.
Table of Contents
- Instruction skipRowIf
- Overview
- Question Id
- Value
- Input value
- Examples
- Partial Example: Do not include the records when date1 > date2
- Partial Example: Do not include the records when date1 = date2
- Partial Example: Do not include the records when date1 = 2015/10/24
- Partial Example: Do not include the records when date1 is empty
- Partial Example: Do not include the records when serious is ‘Y’
- Partial Example: Do not include the records when serious is not ‘Y’
- Partial Example: Do not include the records when serious is empty
Instruction skipRowIf
Overview
This instruction will skip the current row, if the input value should be equal to the constant value parameter. The instruction will return its input value in any case, so that this instruction can be used at any chained instruction location without modifying the value.
Question Id
Unused.
Value
Required. This constant value is compared agains the input value. If they are equal, then the row is skipped.
Input value
Required. The input value is compared against the constant value. If they are equal, then the row is skipped.
Examples
Form Type Id | Question Id | Instruction | Value | Column Number | Column Title | Data Type |
---|---|---|---|---|---|---|
#visit1.ddisV1.doseomate $>&&dosing $> | rememberQstId $>treatmentName $>skipRowIf | dosing $>A $> | 4 | EXTRT |
Partial Example: Do not include the records when date1 > date2
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | date1 > date2 $>true |
Partial Example: Do not include the records when date1 = date2
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | date1 == date2 $>true |
Partial Example: Do not include the records when date1 = 2015/10/24
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | date1 == ’2015/10/24′ $>true |
Partial Example: Do not include the records when date1 is empty
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | date1 == ” $>true |
Partial Example: Do not include the records when serious is ‘Y’
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | serious == ‘Y’ $>true |
Partial Example: Do not include the records when serious is not ‘Y’
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | serious != ‘Y’ $>true |
Partial Example: Do not include the records when serious is empty
Instruction | Value |
---|---|
booleanExpression $>skipRowIf | serious == ” $>true |
Need more help?
Please visit the Fountayn Contact Information page.