VALUES
Syntax
=VALUES(obj)
Arguments
| Argument | Type | Description |
|---|---|---|
| obj | Any | The object or reference to test |
Examples
=VALUES(OBJECT("A", 1, "B", 2))→[1, 2]
Returns the values of the given object
=VALUES()→[123, "Hello World", true, #ERROR!]
Returns the values of the current object including at least one error value
Updated 2 months ago