Functions Utility

TransposeArray

The TransposeArray() function returns the transpose of a data range—vertical columns become horizontal rows and vice versa.

Related functions: ArrayToString, StringToArray, SubstituteArray


Syntax:

Qx.TransposeArray(Range)
  • In Excel with Quintessence add-in versions prior to 25.1, use: TransposeArray()
  • In the Quintessence Editor (Studio) using Quintessence language, use: TransposeArray()
  • In the Quintessence Editor (Studio) using Python language, use: Qx.TransposeArray()
See parameter descriptions

RangeThe string to be split.

    Examples:

    The examples provided below are based on fictitious data for illustrative purposes only.

    > Example 1: Transposing multiple columns


    Range (A1:B5):

    Task 110%
    Task 299%
    Task 3100%
    Task 445%
    Task 585%

    Function call:

    =Qx.TransposeArray(A1:B5)

    Result:

    Task 1Task 2Task 3Task 4Task 5
    10%99%100%45%85%