Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
Hi Vidhya,
Thanks a lot !
That's working fine.