Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
IN my data I have the values like null and empty where as I need to consider those values which are empty and null .
but this is considering only empty values or - values and neglecting something like 'null' .
Thanks in Adance
You can join your two sets together with an OR by using + between them:
count({<ID={"=Len(Sales_ID&Employee_ID)<=0"}>+<Sales_ID={'null'},Employee_ID={'null'}>}ID)
In this case, it will count it if either of the sets are true.
You can join your two sets together with an OR by using + between them:
count({<ID={"=Len(Sales_ID&Employee_ID)<=0"}>+<Sales_ID={'null'},Employee_ID={'null'}>}ID)
In this case, it will count it if either of the sets are true.
try this
in script: NULLASVALUE *;
in front end expression :
count({<Sales_ID={"*"},Employee_ID={"*"}>}ID)