Select from JSON

Converts the cell value from text/string to a JSON object and returns the value given by the specified JSON selector.

Type: Import/Export

Description: Converts the cell value to a JSON object and selects the value specified by the selector.

Supports nested key/values and arrays. You can use key.value[index].key to retrieve value for a given key.

Example
  • Cell value

{

"parts" : [

{ "name" : "coil", "quantity" : 2 },

{"name" : "fan", "quantity" : 3 }

]

}

  • Rule values:

    • Select value: parts[1].name

  • Result: fan

Last updated