Hi Experts,
We have a requirement where we need top 3 highest values of a single field, let me tell with an example.
MaterialType Material SoldToParty Quantity
M1 MA1 C1 100
C2 50
C3 100
C4 500
M1 MA2 C1 10
C2 50
C3 200
C4 150
M1 MA3 C1 100
C2 10
C3 20
C4 250
M1 MA4 C1 100
C2 150
C3 200
C4 50
From the above we need to pick Top 3highest sold Material and all the SoldToParty of those top 3 Materials. This is like we need to apply Top N condition only on Material. Is this possible or is there any other solution for this. Please suggest
In the above DATA Total of material is as follows.
MA1(750) MA2(410) MA3(380) MA4(500)
Here we need to display the SoldToParty of MA1(750) MA2(410) MA4(500)
Regards,
Vivek