Hi I am trying to reduce the transpose JSL columns.
Currently, when transpose col from col (3) to col (8), each col needs to be listed specifically.
Can I convert it to transpose between col (3) and col (8)? without list each column name.
Thanks
dt = Current Data Table();
dt << Transpose(
columns(
Column( 3 ),
Column( 4 ),
Column( 5 ),
Column( 6 ),
Column( 7 ),
Column( 8 )
)
);