Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
How to add the excel data to alrdy existng data wit same column names...?
how can i do this
thanks in advance
Suresh
If Autoconcatenate doesn't kick in automatically, you can use the CONCATENATE (tablename) prefix to force the concatenation of the currently loaded records to an existing internal table.
If Autoconcatenate doesn't kick in automatically, you can use the CONCATENATE (tablename) prefix to force the concatenation of the currently loaded records to an existing internal table.
Partial Reload (using Add) ?
i hve data in seperate excel with same coulmn data ..
Like:
Load
F1,
F2,
F3
From <excel1>;
Load
F1,
F2,
F3
From <excel2>;
This way one table would be generated in qv (feature is called Auto-concatenation).
thanks tresesco...and peter..