Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Looking to create a bar chart to do the following in Qlikview:
Sample Data:
Region, Product, Sales, Period
1,2,1,1
1,2,3,2
1,2,4,3
2,2,4,1
So, If I wanted to count the individuals products that sold less than 10 times per year, what would be the best method?
To count the individuals products that sold less than 10 times per year, you can do this:
count({<product = {"=sum(sales)<10"}>}Product)
now it depends on how you want to integrate the year value in this analysis, you want to select the year ? you want it to be static on a specific year ?
Hi,
Period is the equivalent of Year ?
Yes - I only have 1 year of data. Essentially looking to use set analysis --
count({<product = {'=if(sum(sales)<10,1}>}Region)
To count the individuals products that sold less than 10 times per year, you can do this:
count({<product = {"=sum(sales)<10"}>}Product)
now it depends on how you want to integrate the year value in this analysis, you want to select the year ? you want it to be static on a specific year ?
So, products can go across regions. I want to show each region and the number of products with sales under 10.
If you want to show the count of each region, juste use the Region field on the dimensions and use the expression I gave you