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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlikview hide the row and Column values

Hi All

I am new in  Qlikview so can you please give me some guidance . So Please find attachment

4 Replies
Not applicable
Author

Table: 

LOAD * INLINE [ 

    Variant, Customer, Sales 

   S1, Wilson, 12 

   S2, Johnny, 55 

   S3, Jenny, 6 

    S4, Mary, 4 

    S4, Rob, 33 

    S5, Dave, 44 

]; 

left Join(Table)

load distinct Customer, Sales as s1

Resident Table where Len(Sales)<=1;

Not applicable
Author

Hi,

Can you provide a sample qvw stating the exact requirement?

I have given an example based on what I understood.

I am implementing my logic based on following sample data.

load * inline

[

[@2]

4312,

4271,

2890010,

2789000,

2017

];

load *

resident A

where len([@2])<=4;

PrashantSangle

Hi,

You can remove those value by where clause

like

Load * from tableName

Where not wildmatch(fieldname,'2015*')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
prma7799
Master III
Master III

Please try

Data:

LOAD * Inline [

Number,

4933,

4961,

5061,

5142,

20151108,

20151109,

20151110

]

Where not wildmatch(Number,'2015*')