Hello everybody. How can I go about creating a pivot table where each column corresponds to the sales value on a certain date.
The dates are not later so I cannot apply Set Analysis formulas for a pivot table like: Sum ({<Date = {"$ (= date (max (Date) - 0, 'DD / MM / YYYY'))"}>} Sales) First column Sum ({<Date = {"$ (= date (max (Date) - 1, 'DD / MM / YYYY'))"}>} Sales) Second column Sum ({<Date = {"$ (= date (max (Date) - 2, 'DD / MM / YYYY'))"}>} Sales) Third column .. and so on.
I managed to create a table that contains the columns as shown in the example:
I tried replacing the value -1 with the value NumDay. For instance: Sum ({<Date = {"$ (= date (max (Date) - 0, 'DD / MM / YYYY'))"}>} Sales) First column Sum ({<Date = {"$ (= date (max (Date) - NumDay, 'DD / MM / YYYY'))"}>} Sales) Second column But it does not work. Can anyone help me.