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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Frequency Sales Graph

Hey guys.

I needa create a Frequency sales Graph that depicts the frequency of sales over a MonthYear dimension.

I set my expression as

=aggr(Count(MemberNo),Sales)

but its not working.

Any ideas?

Thanks in advanced

1 Solution

Accepted Solutions
shumailh
Creator III
Creator III

I think there is no need for aggr() function if you wanted to see the frequency. you just need to define the dimension (i.e. MonthYear) and the expression (i.e. =count(Sales) )

Regards
Shumail Hussain

View solution in original post

4 Replies
Not applicable
Author

Maybe vice versa, if you need to see number of sales per Member. The expression should be like this:

=aggr(Count(Sales),MemberNo)


Not applicable
Author

Thanks for the quick response.

=aggr(Count(Sales),MemberNo) isnt working...
any other ideas?


shumailh
Creator III
Creator III

I think there is no need for aggr() function if you wanted to see the frequency. you just need to define the dimension (i.e. MonthYear) and the expression (i.e. =count(Sales) )

Regards
Shumail Hussain

Not applicable
Author

lol cnt believe it...thaks for your help man