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

Iam loading 1 qvw file by using Binary load in that i have 4 tables A,B,C and D after loading the link was formed for B,Cand D tables now i want to add new 50 records to the C table how can i do that?


Hi

Plz any one share the  answer

1 Solution

Accepted Solutions
Not applicable
Author

binaryload;

concatenate(c)

load *

50 rows

;

View solution in original post

4 Replies
Not applicable
Author

binaryload;

concatenate(c)

load *

50 rows

;

Not applicable
Author

After the Binary load, you can access the data model of the binary loaded QVW in the new QVW.

for example

ConCatenate (C)

Load *

From <<mention your source here>>;

its_anandrjs

Load another Inline table or from any source like excel or any data. You have to concatenate new data into the existing table and which contains same field names.

Ex:-

Concatenate(TableName)

Load * Inline

[

FieldName1,FieldName1,FieldName1

..

..

];

Regards

Anand

Not applicable
Author

Thankyou all for ur quick reply