Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

binary load issue

I have one qvw with which is binary loaded and other qvw with 50 rows.i want to add these 50 rows to the table in first qvw?how do you do that?

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Hi,

1. First load  binary file

Binary ;

2. Find table name that loaded as binary

3. Then concatenate this table to previous binary table

Binary ;

Concatenate(TableName)

Load

*

From

FROM

(ooxml, embedded labels, table is Sheet1);

Regards

Anand

View solution in original post

5 Replies
Not applicable
Author

load the first one as binary laod

load the additional 50 rows table (put concatenate between loading)

binary yourfile.qvw;

concatenate

load

new table 50 rows

Not applicable
Author

Hi manoj

can you please elobrate more

Not applicable
Author

binary file.qvw;  ( load first application)
concatenate

load *

from sales.qvd;

(load extra table u have)

Not applicable
Author

Hi,

Binary sample1.qvw;


Load * from Table; (watever you want table)

If you want only first 50 records then

first 50 Load * from Table; (watever you want table)

its_anandrjs
Champion III
Champion III

Hi,

1. First load  binary file

Binary ;

2. Find table name that loaded as binary

3. Then concatenate this table to previous binary table

Binary ;

Concatenate(TableName)

Load

*

From

FROM

(ooxml, embedded labels, table is Sheet1);

Regards

Anand