Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

an Aggr question

Hello,

I am stucked in a aggr task, so i really appreciate any help.

I have a table like this:  Dimension1, Dimension2, ..., DimensionN, Day     (Day is a Date field and can be empty), and I am trying to measure the eficiency of the activity, in terms of how many registrations per day you can do the same day. The aim is a table/chart like this, which would mean, for instance, that there are 198 days in which you were able to do 3 registrations in the same day.

Actions per day     Number of days

1                         87

2                         115

3                         198

4                         53

etc                        ...

Thanks.

Marc.

7 Replies
tresesco
MVP
MVP

Could you post a sample qvw?

Anonymous
Not applicable
Author

Marc,

See my answers here: http://community.qlik.com/message/478904#478904

Regards,

Michael

Not applicable
Author

Posted.

tresesco
MVP
MVP

Qvw is empty(front-end). Reload; save; reupload.

Not applicable
Author

Thanks Michael, I did it!

Anonymous
Not applicable
Author

Hello, Marc

Using your data, I would use this calculated dimension:

=Aggr(Sum(ContadorVisita), FechaVisita)

And this expression:

Count({$<ContadorVisita = {">0"}>} Distinct FechaVisita)

I've attached an example QVW.

Bruno.

Not applicable
Author

Great. Thanks