Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
andyrebs
Contributor III
Contributor III

class function and Total

Hi!

I made a bar chart, I wuold like to use, as dimension, class function:

=class(?????,$(VClassTotalOrder),'Imp.')

what I write in ?????, if I would have the Total of the order?

I have these data:

N°OrderProductProductPrice
11111Pen1,00
11111Rubber4,00
22222Paper3,00
33333Paper3,00
33333Bag15,00
33333Pencil2,00

Thank you!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try maybe

=aggr( class( sum[ProductPrice] ,$(VClassTotalOrder),'Imp.'), [N°Order])

View solution in original post

2 Replies
swuehl
MVP
MVP

Try maybe

=aggr( class( sum[ProductPrice] ,$(VClassTotalOrder),'Imp.'), [N°Order])

andyrebs
Contributor III
Contributor III
Author

Yes, It works!

Thanks