Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I am having a table say
Tab1:
Col1, Col2
a1, 1
a2,
a3, 2
a4,
a5, 3
Now I have to select those column's value from Col1 where Col2 is null in Qlikview.
Can we get it using expression or we need to work at backend?
Regards,
Balraj
You must set in the script dummy values for null in order to make it selectable in your tables ...
Is it possible through expression at UI?
You can use something like:
If(Isnull(Sum(MyValue)), 'NO', Sum(MyValue))
and in multibox you can set a similar expression
Hi Balraj
you can restrict them in the script itself like using Load * from where Col 2=null
This is the dummy code just to give u an overview about that
Regards
Kushal Thakral
I have to display only those value where they are null in the table.
I am not asking to use aggregate function...
In a dimension you mean? In that case use :
If(Isnull(MyField), 'NO', MyField)
Yes, If one dimension(D1) is null than I have to select other dimension(D2) values for those null values.
Above expression is not working...
Obviously you put your field name in place of MyField....