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

Full the Data from only one table

Hi All

          i have two Tables like:

Emp_codeEmp_name
101abc
102ghi
emp_codeemp_sal
10410
10520

if am loading into qlikview based oin EMP_code it will join

When i pull emp_code in list box it will show like

emp_code
101
102
104
105

i want retrieve the emp_code information from the first table

how we can do like that

can u suggests me

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

When you load first table, add a field:

Load

Emp_code,

Emp_Name,

'1' as TabNum

....

When you use the chart use the following formula:

If(TabNum=1, Emp_Code, Null())

Let me know ...

sasikanth
Master
Master

Hi

Making flag is one solutin and the other one is

add a new Copy of Emp_code of table 1

like

LOAD

emp_code,

emp_code as Tab1_emp_code,

Emp_name,

From........table1;

use that Teb1_emp_code to retieve only values from table 1

Hope it helps you