Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a pivot table where I sum a numeric field by a date field:
dimension field: pdate
expression: sum(stockqty)
I now want to add another expression to sum stockqty for the previous date. How can I do that with set analysis?
Thanks for your help
You can't with set analysis. The set is calculated per chart, not per row. Try above(sum(stockqty))
You should look into the chart inter record functions, namely above() or before() [depending on your table layout]:
=above(sum(stockqty))
or
=before(sum(stockqty))
Thanks for the reply. Unfortunately, above(sum(stockqty)) does not produce any value
Thanks for the reply. Unfortunately, above(sum(stockqty)) does not produce any value
Thanks for the reply. Unfortunately, teh expression above(sum(stockqty)) does not produce any value
Thanks for the reply. Unfortunately, the expression above(sum(stockqty)) does not produce any value
Thanks for the reply. Unfortunately, the expression above(sum(stockqty)) does not produce any value
Sorry for the multiple replies. Yes, the above function solved my problem. Thanks.