Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
My dimension is: Outscan date
My measure is: Qty
In Qliksense, how do i add the Qty of the null values of outscan date?
Eg: if(isNull[Outscan Date],sum(Qty))?
If the Include null values option for the dimension is enabled then sum(Qty) should suffice.
I need to know the difference between the values that have a date and the values that do not have a date
May be you need this
Sum(Qty) - Sum({<[Outscan date] = {"*"}>}Qty)
total: sum(Qty)
total where Outscan Date has a value: sum({<[Outscan Date]={"*"}>}Qty)
total where Outscan Date has no value: sum({<[Outscan Date]-={"*"}>}Qty)
Thanks, worked perfectly