Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I've just downloaded the trial version of Qlikview in order to see if it fits our needs. What I need to do is to calculate aggregative value, for each row of data. Here's an example that could clearify things:
I have sales data for every product in every day. I want to calculate the standard score (the difference from the mean, in standard deviations) of each day's sales. This can be used to detect days in which sales were exceptionally high or low (where the standard score > 3, for example) for each of the products. So the table I need has the following fields: product, day, sales, standard score.
Oracle supports this kind of calculation with the sql expression: (sales - avg (sales) over (parition by product)) / stdev(sales) over (parition by product)
Is it possible to do that in QlikView, and if so, what's the simplest way?
Thanks a lot,
Amos.
John, thank you very much for all of the answers. It really helped a lot.
Bye.