Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD problem

I´m using a script that looks like this

[test]:

load

a,

b,

c

FROM

file.qvd;

load

a as sa,

b as sb,

c as sc

FROM

Sfile.qvd

store test into produktion.qvd

BUT I only get the first load a, b, c into the qvd file???????

1 Solution

Accepted Solutions
saumyashah90
Specialist
Specialist

Table1:

Load

a,

b,

c

from file.qvd;

Table2:

Concatenate
a as sa,

b as sb,

c as sc

from SFile.qvd

View solution in original post

4 Replies
saumyashah90
Specialist
Specialist

Table1:

Load

a,

b,

c

from file.qvd;

Table2:

Concatenate
a as sa,

b as sb,

c as sc

from SFile.qvd

Not applicable
Author

Cause you only store your TEST table.

try this:

[test]:

load

a,

b,

c

FROM

file.qvd;

test1:

CONCATENATE ([test])

load

a as sa,

b as sb,

c as sc

FROM

Sfile.qvd

store test into produktion.qvd

saumyashah90
Specialist
Specialist

check this

Not applicable
Author

Tak for hjælpen