REVERSEARRAY function

REVERSEARRAY(Array) REVERSEARRAY(Array)

Array

{ ? }

The array to reverse.

Returns

{ ? }

A reversed version of the given array.

Reverses the given array and returns it. REVERSEARRAY({ "a", "b", "c" })REVERSEARRAY({ "a"; "b"; "c" }) returns the array { "c", "b", "a" }{ "c"; "b"; "a" }.

This function is specific to Calcapp.

Example

REVERSEARRAY({ "a", "b", "c"})REVERSEARRAY({ "a"; "b"; "c"})

Returns the array { "c", "b", "a" }{ "c"; "b"; "a" }.