Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

insert values in a excel table

Hello together,

new day new Problem.

I want to load the first table with

LOAD

Product;

Product
A3
B

5

how can i insert a new rows

Product
C7
D8

to the original table. It should Display the following table.

Product
A3
B5
C7
D8

What LOAD Statement I Need for this requirement

Thanks

Jörn

4 Replies
giakoum
Partner - Master II
Partner - Master II

where do those new rows come from? Or should always the same row be added?

jerem1234
Specialist II
Specialist II

Maybe the Concatenate keyword would be of use?

Concatenate(Table1)

Load

....

Hope this helps!

Not applicable
Author

the new rows come from a formula which calculated the rows with sum function.

The Product C is a Sum formula and the Product D also.

giakoum
Partner - Master II
Partner - Master II

then the solution suggested by jeremiah is what you need.

concatenate(Table1)

load

     Category

     sum(€) as €

resident Table 1

group by

     Category

or similar...