Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to Sync Multiple Qlikview Files together??? (HELP)

HELLO FRIENDS, i have 2 files, RAW & SMACKDOWN. I need a favour.

could you help me sync this 2 files together? I think its using QVD,but i'm not really sure how to go about doing this.

Basically

1)Qlikview file called RAW and another Qlikview file called SMACKDOWN.

2)Sync 2 files together.

3)Must open in 1 QLikview file.

4)RAW & SMACKDOWN in a list box as options.

5)When click RAW, the details from the RAW data file should be opened.

6)When click SMACKDOWN, the details from the SMACKDOWN data file should be opened.

Can this be done??

THANK YOU! 😄

2 Replies
Not applicable
Author

Hey guys, this is the second file called SMACKDOWN!

Recap, what i need is,

Raw & Smackdown. Sync 2 files together. Open in another file, and that file should have both data.

can this be done ?

erichshiino
Partner - Master
Partner - Master

I checked and most of the table are the same.

So, create a single script and use concatenate to merge the two tables. Use a flag to differenciate between RAW and SMACKDown.

Use this flag as a condition to hide or show your sheets.

For example:



RAW:

LOAD 'RAW' as SOURCE,

Brands as BRAND

,

[Product Description]

as DESC

,

[Price(SGD)]

as PRICE

,

Discount

as

DISCOUNT1

FROM

C:\QPRICE\SAMPLES\somepractice1.xlsx

(

ooxml, embedded labels, table is

Sheet1);

In sheet properties, show sheet condition, include =if(SOURCE='RAW',1,0)

Let me know if you need more details.