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

how to remove ? and null values in report ?

how to remove  ?  and  null values  in  report ?

7 Replies
ramasaisaksoft

Hi Manoj,

           if u want remove "Null " values from a particular column ,you can do this in Script like below

Load sal,eno from fact_Reservation;

sql select * from fact_Reservation where eno<>'NULL';

or

sql select * from fact_Reservation where eno<>NULL;

please check like this may be it will helpful to u

Anonymous
Not applicable
Author

Check on the suppress When Value is Null..

1.pngIn Dimension

ramasaisaksoft

Hi Sreekanth ,

         i Hope u r asking in code.Any way thanks for u r reply.I hope u r a Telugu person am i wright?if yes reply to me

ramasaisaksoft

This  solution only applicable for Chart.

             But my solution in code is applicable for all sheet objects('Null'  values are filter in Listbox,Tables ....etc)

vardhancse
Specialist III
Specialist III

Hi,

If we want to remove null values from all the fields, then we should mention and condition in the where condition.

Is there any alternate for this.?

Not applicable
Author

s mail is  manojkumar27.m@gmail.com  in mumbai  present

anbu1984
Master III
Master III

In Sql

sql select * from fact_Reservation where eno Is Not NULL;