Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count all Users where Sum of a certain value is above n

Hello everyone,

I'm very new to qlikview and ran into my first mayor problem that i couldn't find anything really useful to.

What i need to to is count the Amount of people who exceeded a certain Timeframe on a daily basis. So let's say if on Day 2 of the month 0 People exceeded their time the value should be 0 and this should be counting up to always see the total amount of people exeeding their time.

If thought about something like this:

     Sum(Aggr(If(Sum([myTime])>='7200',1,0),[Name],[FirstOfMonth]))

but it somehow won't give me the results i wish to see.

Does anyone have a good idea on how to solve this?

Best Regards

Sebastian

5 Replies
Anonymous
Not applicable
Author

Hi Sebastian,

Could you attach one example to see your data and your calculation on real time?

Regards.

Digvijay_Singh

Any specific reason you are using single quote in if statement for numeric sum? Not sure if that is causing any difference?

Kushal_Chawda

may be try this

=Count({<Name ={"=Sum([myTime])>7200"}>}Name )

avinashelite

try like

if(Sum([myTime])>7200,Count(Name))

pho3nix90
Creator II
Creator II

Hi Sebastian,

If you could give a brief example of where you are trying to accomplish this? I assume it's in a straight table.

There are multiple ways of how you can tackle this:

Count(if(Sum([myTime]) > 7200, Name))


Or you could do

Count({<[myTime]) = {">7200"}> Name}


If you can give an example of what your data looks like, I can give better examples if the above doesn't work.