Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
akpofureenughwu
Creator III
Creator III

Display the highest value of sales only

Good day sir,

I have a set of data that I am working on. I need to display the highest sales value only

Please how can I achieve that?

Regards

Akpofure

5 Replies
Anil_Babu_Samineni

Do you have Data set with you, Would you share that data and tell us the Expected result and where you are doing this?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
akpofureenughwu
Creator III
Creator III
Author

Hello Babu,

I wold love to know the highest sales for each location as well as the total states..

As well as monthly high, quarter high .. possible weekly (*can it be possible)

Regards

tresesco
MVP
MVP

Did you try max() like:  =Max(Sales)  ?

MK_QSL
MVP
MVP

Highest Sales with respect to what?

If you want highest sales for country, you can do something like below.

=Max(Aggr(SUM(Sales),Country))

or

=Max(Total Aggr(SUM(Sales),Country))

Anil_Babu_Samineni

From given data what are you expecting? May be these?

1) Max(Aggr(Sum(sales), location))

2) Max(Aggr(Sum(sales), states)) ......

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful