If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hello Everyone,
I am new to Qlik Sense and I am facing issue in below requirement. Please help!!
I have a drill down dimension "CountryState" having two dimensions "Country" and "State" and the measure is sales.
I have to show the drill down in the bar chart in a way when initially the chart is loaded then all the Country should be visible showing Sum(Sales) of each country. And when we select a country in the chart then it should show me Sum(sales) of only top 5 cities.
Found a few solution with GetCurrentField method but it does not work in Qlik Sense.
Check this sample
Thanks Arulsettu. But I donot have licence for Qlik sense so I will not be able to load the qvf file.
If possible could you please explain the solution in relpy.
Thanks in advance.
While creating drilldown use the below calculated dimension for city
if(aggr(rank(sum(sales),4),city)<=5,city)
measure is - sum(sales)