Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
madhuqliklondon
Creator II
Creator II

Unqualify a field but do match with other tabel

Hi,

I want to match the column name “OrderNo” as “Order” in other table, if I qualify these they are coming up with table name as prefix .is there a way to match the column name??

     LOAD

     OrderNo, 

     ShipOptID,

     ShipName,

     ShipID,

     FROM

[C\Qlikview\LIVE\Data\QVD \Ship.QVD](qvd);

1 Solution

Accepted Solutions
madhuqliklondon
Creator II
Creator II
Author

Done this now ,

Qualify*;

Unqualify Order ;

Load

OrderNo as Order,

     ShipOptID,

     ShipName,

     ShipID,

     FROM [C\Qlikview\LIVE\Data\QVD \Ship.QVD](qvd);

View solution in original post

8 Replies
Anil_Babu_Samineni

Why not renaming

  LOAD

     OrderNo as Order,

     ShipOptID,

     ShipName,

     ShipID,

     FROM

[C\Qlikview\LIVE\Data\QVD \Ship.QVD](qvd);

Join

Load Order, .... From QVD;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
madhuqliklondon
Creator II
Creator II
Author

Hi Anil,

It is in dashboard ,so giving table names to load , Even the other column "order"  was in in table but i have unqualified it.

Anil_Babu_Samineni

I didn't get that? Can you explain with structure where you do and what you are doing

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
madhuqliklondon
Creator II
Creator II
Author

Hi Anil,

Unqualify*; 

   Ship:

   LOAD

     OrderNo as Order, 

     ShipOptID,

     ShipName,

     ShipID,

     FROM

will this work?

madhuqliklondon
Creator II
Creator II
Author

Sure Anil,

I will try to get sample .qvw

madhuqliklondon
Creator II
Creator II
Author

Done this now ,

Qualify*;

Unqualify Order ;

Load

OrderNo as Order,

     ShipOptID,

     ShipName,

     ShipID,

     FROM [C\Qlikview\LIVE\Data\QVD \Ship.QVD](qvd);

Anil_Babu_Samineni

You mean to say UNQUALIFY OrderNo ??

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
madhuqliklondon
Creator II
Creator II
Author

Hi Anil ,yes.