JSON.VALUE
Returns a value from a JSON object. The value to return corresponds to the path specified by given keys. Please refer to JSON.RANGE for writing the complete data of a JSON object to the sheet.
Syntax
=JSON.VALUE(JSON, Key1...KeyN)
Arguments
| Name | Description | 
|---|---|
| JSON | A JSON object to read value from. | 
| Key1...KeyN | A list of keys which build up a path within given JSON object. | 
Return
The value at specified path or an error if no JSON object is passed or path is invalid.
Examples
Below examples assumes following text in A1:
{"Name": "Peter", "Kids": ["Paul", "Mary"]}} 
| Formula | Result | Comment | 
|---|---|---|
 | Peter | Value at Customer.Name | 
 | Mary | Value at Customer.Kids[1] | 
 | #NA | Invalid json path |