Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello to all,
I'm new in qlikview, and I need to know how to count records with value >0
I have a calculated field with count(mono_usg) but I want to count only the records with a value > 0
Thanks in advance
Hi
Try this:
count({<Value={'>0'}>}mono_usg)
Hope that helps.
Regards
Aviral Nag
count({<mono_usg={'>0'}>}mono_usg)
try
count({<Value -= {0}>} mono_usg)
Hope it helps...
Return zero
do not work return 0
=count(if(mono_usg>0,mono_usg))
try
count({<mono_usg-= {0}>} mono_usg) OR
count({<mono_usg= {" > 0 "}>} mono_usg)
SHOULD WORK...
This may seem like a very basic answer, but have you confirmed that you imported data that actually fulfills when this condition is true?
Sum(Sign(mono_usg))