Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
I have some names of countries and I have a profit per country.
Now I want a separate text box which show in which country I earn most profit.
How can I do that?
Try
FirstSortedValue(Country, - SUM(Profit))
Or might be
FirstSortedValue(Country, -Aggr(SUM(Profit),Country)
Hi Lieko,
Try like this.....
Max(Aggr(sum(profit),country))
or
FirstSortedValue(Country, -sum(Profit))