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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
coddra_6
Contributor III
Contributor III

Cross qvd With xlsx

Hey!!

What's Up? I want to know How can I cross a dimention (qvd) with a Excel File (xlsx).

I have the case:

Client Dimention:
     Client Code
     Cliente Name
     Cliente Product Code

Excel File:
     Product Code
     Product Name
     Product Risk

And I whant a dimention called Analysis:

Analysis:
     Cliente Code
     Product Code
     Product Risk

But I don't know how to get it.

Hope your help!!

Thanks!!

5 Replies
MayilVahanan

HI

Join with excel and qvd

Try like this

Client:

Load

ClientCode,

     ClienteName,

     ClienteProductCode

from client.qvd(qvd);

Left join(Client)

Load

      ProductCode as [ClienteProductCode],

     ProductName,

     ProductRisk

From product.xlsx;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Clever_Anjos
Employee
Employee

"Cliente Product Code" and "Product Code" have the same values (can be a key)?

If so,just rename

LOAD

*,

Product Code as liente Product Code

from yourexcelfile;


AQL will handle the rest


coddra_6
Contributor III
Contributor III
Author

Yeah, but I need to use:

WHERE Cliente Country = 'Germany'

And the Cliente Country is in the Dimention Cliente.

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

You will need to join the tables first, and then reload using a RESIDENT load, to only filter Clients from Germany.

Ask me about Qlik Sense Expert Class!
Not applicable

Hi,

Try like this

Client:

Load

ClientCode,

     ClienteName,

     ClienteProductCode

from client.qvd(qvd);

Left join(Client)

Load

      ProductCode as [ClienteProductCode],

     ProductName,

     ProductRisk

From product.xlsx;


Analysis:

Load

Cliente Code,

     Product Code,

     Product Risk,

Resident Client

where dim='dim Value';