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: 
soniasweety
Master
Master

Only Null data

Hi all,

I have an issue with showing the null data .

My Requirment is:  I want to show the data where the completeddate is null/blank.

I have written this expression still its giving the wrong output can anyone suggest the correct expression?

=aggr(Only({$-<completiondate={"*"}>}numb),numb)

   

I have data like below   :

   

numbtypecompletedatevalues purchase
1A10-Jan-17100No
2X11-Jan-17101yes
3C12-Jan-17102No
4G13-Jan-17103yes
5B104yes
6J105yes
7ER106no
8GR17-Jan-17107no
9HET18-Jan-17108yes
24 Replies
tresB
Champion III
Champion III

May be try putting aggr() around like:

Aggr(Only({<completedate = {"=Len(completedate)=0"}>}numb),numb)

soniasweety
Master
Master
Author

thanks anil

but I want it to be done in front end only not in script.

antoniotiman
Master III
Master III

Then

Calculated Dimension

=Aggr(If(Len(Trim(completedate))=0,numb),numb)

Check 'Suppress value when null' and uncheck Suppress 0 values

Anil_Babu_Samineni
MVP
MVP

I think you miss understand the Qliksense? May be you are new to QS. Read the article how we can create measure / dimension in QS from community

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
soniasweety
Master
Master
Author

thanks all I will check with original data and confirm you .