Switch

Logic Name

Switch

Function

Alters output by switch.

Data Types

Location Type
The first input handler Condition
The second input handler String
The third input handler String
Logic output String
lightbulbRefer to "Logic Specifications" for details.

Properties

Category Property Description
Required Number of Condition Specify the number of conditions as 1 or more.
Comment Comment The comment will also be output to the specifications.It does not affect the conversion process.

Function Details

Number of Condition

Enter 1 or a larger number as [Number of Condition].It is equivalent to the number of condition of switch.
(2*n)+1 input handlers will appear according to the specified number(as n) of [Number of Condition].

Number of Condition 1 2 3 4 5 n
Number of input handler 3 5 7 9 11 (2*n)+1


Maps Boolean to the number (2*n)-1 handler.
Maps String to the number (2*n) handler to output when the Boolean is true.
Boolean is determined from the top, and string is returned when the Boolean becomes true.

Number Type Description
First Boolean Output this string when this Boolean is true. Move on to the the determination of the third handler.
Second String
Third Boolean Output this string when this Boolean is true.Move on to the the determination of the fifth handler.
Fourth String
Fifth Boolean Output this string when this Boolean is true.Move on to the the determination of the seventh handler.
Sixth String
... Boolean ...
... String
Finally th String Returns this string by default if the Boolean is false till the end.

lightbulbThe recommended maximum value for [Number of Condition] is 100.

Logic Sample

Mapping Definition

Logic Settings and Processing Result

If "1" is specified as [Number of Condition], three input handler appear. If the value of "column[1]" and the value of "column[2]" are the same, output "column[3]". If not, output "column[4]".
Property Settings
Property Setting
Number of Condition 1
Input Data
SampleData Inc.,SampleData Inc.,Identical,Not Identical
Sample Data,Sample Data,OK,NG
USA,Japan,Yes,No
Result Data
Identical
NG
No