Hi,
I have the records displayed horizontally in one line using a variable: stringvar courses := courses + {course}+ " ";.
So, instead of
ID[tab][tab]Course
001[tab][tab]A
001[tab][tab]B
001[tab][tab]C
This is what I have now:
ID Course
001[tab][tab]A[tab]B[tab]C
However, the report needs to be exportable to excel and A,B,C need to be placed in different columns. So, in excel it should look like
ID[tab][tab]Course 1[tab][tab]Course 2[tab][tab]Course 3
001[tab][tab]A[tab][tab][tab][tab][tab]B[tab][tab][tab][tab][tab]C
Is there a way to make this request possible? The column names Course 1, Course 2, ... are not important because users can manually type them in after exporting to excel. Please help!
I have the records displayed horizontally in one line using a variable: stringvar courses := courses + {course}+ " ";.
So, instead of
ID[tab][tab]Course
001[tab][tab]A
001[tab][tab]B
001[tab][tab]C
This is what I have now:
ID Course
001[tab][tab]A[tab]B[tab]C
However, the report needs to be exportable to excel and A,B,C need to be placed in different columns. So, in excel it should look like
ID[tab][tab]Course 1[tab][tab]Course 2[tab][tab]Course 3
001[tab][tab]A[tab][tab][tab][tab][tab]B[tab][tab][tab][tab][tab]C
Is there a way to make this request possible? The column names Course 1, Course 2, ... are not important because users can manually type them in after exporting to excel. Please help!