Hi,
I would like to transpose a list of around 200 subsequent row values in one column into 1 row/field value. I am generating a dynamic SGL statement.
As far as I know there is no standard step that could do this, right?
Example:
Column1
---------------------------
row1 | A
row2 | B
row3 | C
..
row200 | X
Should become:
Column1
-------------------------
row1 | ABC..X
Could this be done using Javascript? or is JS only capable of doing single row oriented transformations?
Thx


Reply With Quote
