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

Search box is displaying blank value when there are no NULL values

Hi,

Search box is displaying blank value when there are no NULL values.

Attached is the sample QVW.

Can someone please help me asap.

Thanks!

1 Solution

Accepted Solutions
sunny_talwar

Try with this Where statement

Where Len(Trim(KeepChar(Upper(PARENT_FIRM_NAME), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ&.-1234567890 ')))>0 ;

View solution in original post

5 Replies
maxgro
MVP
MVP

The attachment is the log not the qvw

Anonymous
Not applicable
Author

Apologies.

Added the QVW now.

sunny_talwar

Try with this Where statement

Where Len(Trim(KeepChar(Upper(PARENT_FIRM_NAME), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ&.-1234567890 ')))>0 ;

Anonymous
Not applicable
Author

Thanks a lot Sunny!

svinnakota
Creator
Creator

Hello Roshitha,

You can trying one more filter condition:

where

KeepChar(Upper(PARENT_FIRM_NAME), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ&.-1234567890 ') <>''

I guess the reason is the entire value is getting purged when you are using Keepchar function. In that place blank values appears.

Please correct me,if i am wrong in my assumption.