Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I'm trying to design a sheet which has several charts presenting sales and visiting data. One of the several selection fields is the product type. When calculating the total sales amount the product type must be selected but when calculating the visiting numbers it must be not selected . is there any way to provide this structure ?
The {1} will ignore all selections, which is not really what you want to do. The {1} will NOT ignore dimensions.
To ignore just the product type, you put the Set Analysis inside an aggregate function. It should be placed in every expression in the chart to ignore the selection on every expression.
You total sales amount is probably something like:
Sum(Sales)
To ignore the Product Type selection on that expression, use:
Sum({<ProductType=>} Sales)
Change the field names appropriately, but that second expression will sum up the total sales, ignoring any selections in Product Type, but respecting all dimensions.
Hi,
you can use the set analysis whith the parameter "{1}" this value return the total os your application disregarding both selection and dimension.
i've not experienced with set analysis yet, i've to search for information and then try to use.. i hope it be useful
The {1} will ignore all selections, which is not really what you want to do. The {1} will NOT ignore dimensions.
To ignore just the product type, you put the Set Analysis inside an aggregate function. It should be placed in every expression in the chart to ignore the selection on every expression.
You total sales amount is probably something like:
Sum(Sales)
To ignore the Product Type selection on that expression, use:
Sum({<ProductType=>} Sales)
Change the field names appropriately, but that second expression will sum up the total sales, ignoring any selections in Product Type, but respecting all dimensions.
I'm sorry, eu copy wrong the qlikview help 😉
Sum({<ProductType=>} Sales) works properly, this is what i want.. just missing product type selections while considering the others..
thanks to all interested