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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
daniportero6
Contributor III
Contributor III

How to create a table with sum(Points) by User and Week

Hi everyone,

I need some help with a problem that I have with a table on Qlikview.

The problem is that I wanna show a graphic like this:

Captura.PNG

I have the next table:

Week, User, Points: [

1, A, 15

1, B, 7

1, C, 10

2, A, 2

2, B, 20,

2, C, 9

...

Untill week 38]

Then, I wanna show the evolution of the table (1º, 2º, 3º) by Week and user like the pic from above.

Should be with sum(Points):

      week 1: { A-15, B-7, C-10}, so 1º-A, 2º-C, 3º-B

      week 2: { A-17, B-27, C-19}, so 1º-B, 2º-C, 3º-A

I tryed with RangeSum(sum(Points), 0, Week)) but it did not work.

Any help please?

11 Replies
MarcoWedel

Hi again,

some screenshots that should help you configure your charts:

QlikCommunity_Thread_313146_Pic8.JPG

QlikCommunity_Thread_313146_Pic9.JPG

Num(-Rank(Sum({$<User>} Points)),'0°;0°')

QlikCommunity_Thread_313146_Pic10.JPG

QlikCommunity_Thread_313146_Pic11.JPG

regards

Marco

daniportero6
Contributor III
Contributor III
Author

Thanks you so much Marco!

Regards