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

table with max value

Hi all,
I need help. I have this table:
IDSub IDPrice
11111,8
1121,4
1132,3
22221,7
2233,4
2241,2
And I want to create a table that visualize only the Sub ID with the max price. Eg:
IDSub IDPrice
11132,3
22233,4

How can I obtain this table?

Thanks all.

3 Replies
its_anandrjs

Hi,

Use Max(Price) to obtain this

Regards,

Anand

its_anandrjs

Hi,

In

     Dimension use ID

     Expression Max(Price)

HTH

Regards,

Anand

Not applicable
Author

If I use max Price i obtain the first table, because it give me for each Sub Id the max price. Instead, I want obtain only the sub id with the max price for each ID.