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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan
MVP
MVP

Qualify + Hide Prefix

Dear All,

I have campaign data with qualify fields  with  campaign Job Function i have used Set HidePrefix Command to  hide selected

fields but when i am selecting  campaign Job Function field , This field is visible in selection box . I don't want to show field is selected also i want to use qualify keyword.

Any one can help on this ?

Thanks in adv

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Another way could be using Tag , like:

Tag Field Campaign.%CampaignJobFunction with '$Hidden';

View solution in original post

5 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

It is not possible, you have to rename like below

QUALIFY *;

UNQUALIFY %CampaignId;

Campaign:

LOAD %CampaignCreatedById,

     %CampaignId,

     %CampaignJobFunction,

     %CampaignOwnerId,

     %CampaignQTCompany,

     [Campaign Annual Revenue Range],

     [Campaign Audience],

     [Campaign Count],

     [Campaign Created Date],

     [Campaign Data Source Category],

     [Campaign End Date],

     [Campaign End Date New],

     [Campaign Event Date],

     [Campaign Event End Date],

     [Campaign Event Start Date],

     [Campaign Group Employee Range],

     [Campaign Id],

     [Campaign Incentive],

     [Campaign Line of Business],

     [Campaign Objective],

     [Campaign Publishable Name],

     [Campaign Sector],

     [Campaign Start Date],

     [Campaign Start Date New],

     [Campaign Status],

     [Campaign Sub Type],

     [Campaign Type],

     Month,

     Quarter,

     Year

FROM

C:\Martin\Campaign.xls

(biff, embedded labels, table is Sheet1$);

RENAME FIELD Campaign.%CampaignJobFunction to %CampaignJobFunction;

OR

UNQUALIFY %CampaignId, %CampaignJobFunction;

Hope this helps you.

Regards,

jagan.

vikasmahajan
MVP
MVP
Author

Thanks Jagan I tried using rename field it's working already  but  i have 30 tables in my data modeling

and I don't want to rename %CampaignJobFunction field  will  it  still possible to hide field in selection box ?


Thanks/


Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
tresB
Champion III
Champion III

Another way could be using Tag , like:

Tag Field Campaign.%CampaignJobFunction with '$Hidden';

vikasmahajan
MVP
MVP
Author

Thanks Tresesco i will get back you.

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
vikasmahajan
MVP
MVP
Author

First Reply workd  !! Tresesco

Thanks

Rename field NonPrdBkp.UpdateStatus to  %NonPrdBkp.%UpdateStatus;

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.