Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i need set analysis expression for counting null values and not null values.
Regards
Mahesh
Hi
You cannot count nulls using a set expression. Use NullCount() instead. The Count() function already excludes nulls.
HTH
Jonathan
could you please give some more information
regards,
MT
share your QVW I will show you
Hi
You cannot count nulls using a set expression. Use NullCount() instead. The Count() function already excludes nulls.
HTH
Jonathan
hi
count(Distinct {<fieldname={' '}>}fieldname)
count(Distinct {<fieldname={'0'}>}fieldname) may also work
try this
count({<fieldname={" "}>}value)
or try this
count({<fieldname-={" "}>}value)
This might help
i have the scenario like i want to count filed values having null and fields having data in single set analysis expression not through if statement.
Regards
mahesh
I think you should look at Jonathan Dienst's answer. He explained to you how it should work.
regards,
MT