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 All field has to value

Hello There,

How to hide the field has to value?

ex.

Data                       |                    Value
064500000                                 NL
064500001
064500002                                 SL
064500003

the output should be like below, how can I do that?

Data                         |                   Value
064500001
064500003

Best Regards,

Bing

1 Solution

Accepted Solutions
Taoufiq_Zarra

@bsbernabe 

May be :

Data:
LOAD * INLINE [
    Data,Value
    064500000,NL
    064500001,
    064500002,SL
    064500003,
];

output:
noconcatenate
load * resident Data where len(Value)=0;

drop table Data;

 

output :

Taoufiq_ZARRA_0-1591827756484.png

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

3 Replies
Taoufiq_Zarra

@bsbernabe 

May be :

Data:
LOAD * INLINE [
    Data,Value
    064500000,NL
    064500001,
    064500002,SL
    064500003,
];

output:
noconcatenate
load * resident Data where len(Value)=0;

drop table Data;

 

output :

Taoufiq_ZARRA_0-1591827756484.png

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Saravanan_Desingh

One solution is.

tab1:
LOAD *
Where IsNull(Value) Or Value='' Or Len(Value)=0;
LOAD * INLINE [
    Data,Value
    064500000,NL
    064500001,
    064500002,SL
    064500003,
];
Saravanan_Desingh

commQV11.PNG