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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

reportable vs non reportable

Hi all

in table 1 name and code  field is re portable data, table 1 is the base table of reportable data

table 2 name and code field is  is mixed of reportable and unreportable data.

now i need a list box name called reportabilty  in the front end with a value of reportable and unreportable

where if the user select the reportable from list box it shd the reportable names of the table1 and table 2, similiar tot the unreportable 

how to do this in the coding

Labels (1)
1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Something like this:

table1:

LOAD

     code as repcode,

     name

FROM

     ...somewhere...

     ;

table2:

LOAD

     code,

     name,

     ADDRSS,

     ID,

     If(Exists(repcode,code),'Reportable','Non reportable') as Reportablility

FROM

     ...somewhereelse...

     ;

DROP TABLE table1;


talk is cheap, supply exceeds demand