Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to count with ">"?

Hi there,

I need count the values are greater than 0.08.

I use the following formule but does not work:

Count({$<[VALUE]={'>=0.08'}>}[TASK])

The table is the next:

   

TASKVALUE
10.01
20.1
30.2
40.08
50.09
60.01
7-0.05
8

-0.02

Should be count the task 2,3,4 and 5. The count should be 4.

Thanks for all.

1 Solution

Accepted Solutions
sunny_talwar

Seems to be working for me:

Capture.PNG

View solution in original post

6 Replies
sunny_talwar

Seems to be working for me:

Capture.PNG

clondono
Creator III
Creator III

Use the search expression (double quotes)

=Count({$<[Value]={">=0.08"}>}[Task])

swuehl
MVP
MVP

'Doesn't work' is not a good description of what you see and what you expect instead.

I assume you do get zero as result from your expression (well, just guessing, see above):

Have you double checked that your VALUE field values are numbers and not only text values?

Not applicable
Author

The problem was the . and ,. thanks!

swuehl
MVP
MVP

So your VALUE values were text values, right ?

sunny_talwar

Not sure I understand what the problem was.