Conditional Functions
This article covers the basics of working with conditional functions in the data load editor, including deciphering the function syntax and combining conditional functions with other functions.
Tag for any articles about using conditional statements.
This article covers the basics of working with conditional functions in the data load editor, including deciphering the function syntax and combining conditional functions with other functions.
This article will cover the syntax of the 'switch' control script statement. The switch statement is a logical statement. You can specify different execution scripts that run only when a…
This article will cover the syntax of the 'if... then' control script statement. This is a logical statement. Different parts of the statement will be executed given the conditions met.…
This article will cover the syntax of the 'for... next' control script statement. This is an iterative statement where a counter is specified. The statement will execute for each value…
This article will cover the syntax of the 'for each... next' control script statement. This is an iterative statement where single or multiple parameters can be specified. The statement will…
This article will cover the syntax of the 'do... loop' control script statement. This is an iterative statement that requires logical criteria. The code inside the loop will run until…