Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 :
numb | type | completedate | values | purchase |
1 | A | 10-Jan-17 | 100 | No |
2 | X | 11-Jan-17 | 101 | yes |
3 | C | 12-Jan-17 | 102 | No |
4 | G | 13-Jan-17 | 103 | yes |
5 | B | 104 | yes | |
6 | J | 105 | yes | |
7 | ER | 106 | no | |
8 | GR | 17-Jan-17 | 107 | no |
9 | HET | 18-Jan-17 | 108 | yes |
Hi,
Try this,
=if(len(completedate)=0,completedate)
You are looking for this..
or you want to display complete data and a status flag for blank dates?
Expression:
if(completedate='' or completedate= Null() or completedate='-', completedate)
thanks but I need to do in qliksense
no not working
Why? Show me the image?
Hi Sony,
Please find the attachment.
In that In deimesion i Calculate dimension.
=if(len(trim(completedate))<=0, completedate)
And enable Suppress When value is null checkbox
Exp is Simple Sum(values)
Thanks,
Arvind patil
Dimension :numb // and others
Expression
Sum({<numb={'=Len(Trim(completedate))=0'}>} values)
Regards,
Antonio
I don't have any measures just want to show the all details where the date value is null.
PFA..
Again, please have a look all possible response
LOAD * Inline [
numb, type, completedate, values, purchase
1, A, 10-Jan-17, 100, No
2, X, 11-Jan-17, 101, yes
3, C, 12-Jan-17, 102, No
4, G, 13-Jan-17, 103, yes
5, B, , 104, yes,
6, J, , 105, yes,
7, ER, , 106, no,
8, GR, 17-Jan-17, 107, no
9, HET, 18-Jan-17, 108, yes
] Where Len(completedate) = 0;