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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QlikView - Basic Question

Hi

Sorry to ask you very basic question. Iam fairly new to QlikView.

I have two tables.

Table1:

LOAD * INLINE [

1

2

3

4

];

Table2:

LOAD * INLINE [

Jan

Feb

Mar

Apr

];

Can anyone please tell me how to link the tables ??...Suppose if I want to select "1" that should display the associated value "jan", if "2" should display the "Feb".

Many thanks in advance.

Prakash

2 Replies
Not applicable
Author

Hi Prakash

Why you are going to map these table just take both column in a single Inline table. And dont forget to give column name before you entering the values .

LOAD * INLINE [

No,Month

1,Jan

2,Feb

3,Mar

4,Apr

];


Thanks & Regards,

Srividhya

Not applicable
Author

Hi Vidhya,

Thanks a lot !

That's working fine.