Summary

This article defines the instruction skipRowIf. 

Table of Contents


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 IdQuestion IdInstructionValueColumn NumberColumn TitleData Type
#visit1.ddisV1.doseomate
$>&&dosing
$>
rememberQstId
$>treatmentName
$>skipRowIf
dosing
$>A
$>
4EXTRT

Partial Example: Do not include the records when date1 > date2

InstructionValue
booleanExpression
$>skipRowIf
date1 > date2
$>true

Partial Example: Do not include the records when date1 = date2

InstructionValue
booleanExpression
$>skipRowIf
date1 == date2
$>true

Partial Example: Do not include the records when date1 = 2015/10/24

InstructionValue
booleanExpression
$>skipRowIf
date1 == ’2015/10/24′
$>true

Partial Example: Do not include the records when date1 is empty

InstructionValue
booleanExpression
$>skipRowIf
date1 == ”
$>true

Partial Example: Do not include the records when serious is ‘Y’

InstructionValue
booleanExpression
$>skipRowIf
serious == ‘Y’
$>true

Partial Example: Do not include the records when serious is not ‘Y’

InstructionValue
booleanExpression
$>skipRowIf
serious != ‘Y’
$>true

Partial Example: Do not include the records when serious is empty

InstructionValue
booleanExpression
$>skipRowIf
serious == ”
$>true



Need more help?

Please visit the Fountayn Contact Information page.