Page tree

Release 8.2.2


Contents:

   

Contents:


The CASE function allows you to perform multiple conditional tests on a set of expressions within a single statement. When a test evaluates to true, a corresponding output is generated. Outputs may be a literal or expression.

For more information on the IF function, see IF Function.

Wrangle vs. SQL: This function is part of Wrangle, a proprietary data transformation language. Wrangle is not SQL. For more information, see Wrangle Language.

Basic Usage

Example:

case([ Qty <= 10, 'low_qty', Qty >=100, 'high_qty', 'med_qty'])

Output: Returns a text string based on the evaluation of the Qty column:

  • Qty <= 10 : low_qty
  • Qty >= 100 : high_qty
  • All other values of Qty : med_qty

Syntax and Arguments

In the following, If the testX expression evaluates to true, then the resultX value is the output.

  • Test expressions are evaluated in the listed order.
  • Text expressions and results are paired values in an array.
  • You must include one or more test expressions.
  • Each test must include a result expression. Result expression can be a literal value or an expression that evaluates to a value of a supported data type.
  • If a quoted value is included as a test expression, it is evaluated as the value to write for all values that have not yet matched a test (else expression).

case([test1, &apos;result1&apos;,test2, &apos;result2&apos;, testn, &apos;resultn&apos;,&apos;result_else&apos;])


ArgumentRequired?Data TypeDescription
test1, test2, testnYexpressionExpression that is evaluated. Must resolve to true or false
result1, result2, result2, result_elseYstringQuoted string that is written if the corresponding test expression evaluates to true.

All of these expressions can be constants (strings, integers, or any other supported literal values) or sophisticated elements of logic, although the test expression must evaluate to a Boolean value.

For more information on syntax standards, see Language Documentation Syntax Notes.

test1, test2, testn

These parameters contain the expressions to evaluate. This expression must resolve to a Boolean (true or false) value.

NOTE: The syntax of a test expression follows the same syntax as the IF function. For example, you must use the double-equals signs to compare values (status == 'Ok').

 

Usage Notes:

Required?Data TypeExample Value
YesExpression that evaluates to true or false(OrderAge > 90)

result1, result2, result2, result_else

If the corresponding test expression evaluates to true, this value is written as the result.

These expressions can literals of any data type or expressions that evaluate to literals of any data type.

Usage Notes:

Required?Data TypeExample Value
YesLiteral value or expression

See examples below.

Examples


Tip: For additional examples, see Common Tasks.

Example - Basic Usage

The following data represents orders received during the week. Discounts are applied to the orders based on the following rules:

  • The standard discount is 5%.
  • If an order is for fewer less than 10 units, then the discount is reduced by 5%.
  • If an order is for more than 20 units, then the discount is increased by 5%.
  • The special Friday discount is 2% more than the standard discount.
OrdDateCustIdQtyStd_Disc
5/8/17C00140.05
5/9/17C002110.05
5/10/17C00340.05
5/11/17C001250.05
5/12/17C002190.05


Transforms:

To determine the day of the week, you can use the following transformation:

Transformation Name New formula
Parameter: Formula type Single row formula
Parameter: Formula weekday(Date)

You can build the discount rules into the following transform, which generates the Disc column:

Transformation Name New formula
Parameter: Formula type Single row formula
Parameter: Formula case([Qty<10, Std_Disc - 0.05, Qty>=20, Std_Disc + 0.05, weekday_Date == 5, Std_Disc + 0.02, Std_Disc])
Parameter: New column name 'Disc'

Results:

OrdDateCustIdQtyStd_DiscDisc
5/8/17C00140.050
5/9/17C002110.050.05
5/10/17C00340.050
5/11/17C001250.050.1
5/12/17C002190.050.07


This page has no comments.