Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
bsbernabe
Creator
Creator

Hide data Expression or Script

Hello,

     i have data that i need to hide but i don't know how to do that in expression or script what i want is

like  if(BrancCode= 001') all having BranchCode = 001 should be hide.

Your help would be highly appreciated.

Regards,

Bing

1 Solution

Accepted Solutions
Anil_Babu_Samineni

May be this?

Sample:

Load * from Source;

NoConcatenate

Final:

Load * Resident Sample Where BranchCode <> '001';

Drop Table Sample;

OR

Load * From <Data Sample> Where BranchCode <> '001';

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

View solution in original post

4 Replies
Anil_Babu_Samineni

May be this?

Sample:

Load * from Source;

NoConcatenate

Final:

Load * Resident Sample Where BranchCode <> '001';

Drop Table Sample;

OR

Load * From <Data Sample> Where BranchCode <> '001';

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
bsbernabe
Creator
Creator
Author

Thank You So Much I really appreciate ..

Anil_Babu_Samineni

Just to tell you can use Front end like

Sum({<BranchCode -= {'001'}>}Sales)

OR

Only({<BranchCode -= {'001'}>}BranchCode)

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
mangalsk
Creator III
Creator III

I guess you don't want that data than to hide ,so as mentioned above you can excluding which loading data using where

Load *

from .... where

not exists(BranchCode ,'001')