Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Adapts links associative analysis

Hi,

I found that Qlikview has the power to link columns toghether based on the name and property. This is nice, because it's takes over de job of datawarehousing.

But what should you do if he links something wrong? Is it possible to adapt it, into the code?

Regards

1 Solution

Accepted Solutions
swuehl
MVP
MVP

QlikView links tables by common field name. So if you want to break a link or force QV to link two links currently unlinked, you need to rename. You can use AS in your load to do so:

LOAD Field1 AS Key,

           Field 2

FROM ...;

View solution in original post

1 Reply
swuehl
MVP
MVP

QlikView links tables by common field name. So if you want to break a link or force QV to link two links currently unlinked, you need to rename. You can use AS in your load to do so:

LOAD Field1 AS Key,

           Field 2

FROM ...;