REVERSE function

REVERSE(Text) REVERSE(Text)

Text

Text or { Text }

The text string to reverse.

Returns

Text or { Text }

A reversed version of the given text string.

Reverses the given text string and returns it.

This function is specific to Calcapp.

Examples

REVERSE("abc")REVERSE("abc")

Returns "cba".

REVERSE({ "abc", "def" })REVERSE({ "abc"; "def" })

Returns the array { "cba", "fed" }{ "cba"; "fed" }.

REVERSE(TextField1:TextField5)REVERSE(TextField1:TextField5)

Returns an array containing the reversed values of the text fields of the TextField1:TextField5TextField1:TextField5 range.

REVERSEARRAY(REVERSE({ "abc", "def" }))REVERSEARRAY(REVERSE({ "abc"; "def" }))

Returns the array { "fed", "cba" }{ "fed"; "cba" }. REVERSE({ "abc", "def" })REVERSE({ "abc"; "def" }) returns the array { "cba", "fed" }{ "cba"; "fed" }, which REVERSEARRAY then reverses.