Hi Everybody,
how can I export data from internal table to existing EXCEL (starting on the 14th row and the 3rd column)? Is that possible without using FM?
For example this internal table:
TABLES sflight.
DATA: lt_output TYPE STANDARD TABLE OF sflight,
ls_output LIKE LINE OF lt_output.
SELECT * FROM sflight INTO TABLE lt_output UP TO 50 ROWS.
Thanks,
Nella