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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

thanks

               Thanks

Labels (1)
2 Solutions

Accepted Solutions
Not applicable
Author

do u want remove the data from chart?

if yes, then create the calculated dimension instead of name dimension in chart.

if(Right(Name,4)<>'n.a.',Name)

do u want remove the data in script part?

Load * from ur table

where Right(Name,4)<>'n.a.';

Regards,

Kabilan K.

View solution in original post

somenathroy
Creator III
Creator III

You may try below where with LOAD statement:

Where SubStringCount(Name,'n.a.')=0;

Regards,

som

View solution in original post

4 Replies
Not applicable
Author

do u want remove the data from chart?

if yes, then create the calculated dimension instead of name dimension in chart.

if(Right(Name,4)<>'n.a.',Name)

do u want remove the data in script part?

Load * from ur table

where Right(Name,4)<>'n.a.';

Regards,

Kabilan K.

Not applicable
Author

already tried dude , but not working ...
unfortunately getting nulls in the report .

somenathroy
Creator III
Creator III

You may try below where with LOAD statement:

Where SubStringCount(Name,'n.a.')=0;

Regards,

som

Not applicable
Author

Hi Satti,

You can use below where clause. Hope your problem will be solve.

where not wildmatch(NAME,'n.a.*')

Thanks

Garry