Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qualify statement doubts

Hi All,

I have a basic doubt in qualify statement. As per the contents section in QV this is the example given for qualify

qualify *;

unqualify TransID;

select * from tab1;

select * from tab2;

select * from tab3;

Only TransID will be used for associations between the tables tab1, tab2 and tab3.

As per my interpretation of the Qualify statement TranID will be the only field not be qualified, Am I right ? Can any one explain me the in detail with a small example for qualify.

Thanks in Advance,

Sai.

1 Solution

Accepted Solutions
Not applicable
Author

s

only trans id is unqualified statement

rest of the fields are qualifed

View solution in original post

4 Replies
Not applicable
Author

s

only trans id is unqualified statement

rest of the fields are qualifed

Not applicable
Author

Thanks for the quick reply.

Not applicable
Author

welcome

its_anandrjs

Hi,

Here in all table load TransID is only unqualify field

Ex:-

Qualify *;

Unqualify TransID;

Table1:

select * from tab1;

select * from tab2;

select * from tab3;

After all this load assume you get fields like

TransID,Table1.field1,Table1.field2,Table1.field3........

Regards

Anand