If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hi Experts
How would i write
To show -
The Highest number of sales (field) made from which City (dimension)?
----------------------------------------------------------------------------------------------
// ie SUM( {$<Max(Sales )] = {"*"} >}City)??????
Thanks Guys
Hello Aaron,
without an set analysis clause i think you can also write:
max(aggr(sum(Sales),City))
max({<City={'YourCity'}>} Sales)
If you want to show the max sales of each city, you'd create a chart with City as the dimension and max(Sales) as the expression.
Hello Aaron,
without an set analysis clause i think you can also write:
max(aggr(sum(Sales),City))