You could just put max(sales) instead of sales Or you could insert a break on product id and then drag and drop everything into the summary line - after that do a fold …
Martin Lidl
Consultant
KPN-Orange
e-mail: martin.lidl@orange.be
“Normal is the average of extremes”
Note that this is Ok with the Island Resort universe
Where is there something wrong ???
Pierrot
You could just put max(sales) instead of sales Or you could insert a break on product id and then drag and drop everything into the summary line - after that do a fold …
Doesn’t it even work if you insert a break on Nr. so that you get a summary line and then COPY (not move) the Difference in the summary line? After that do a fold on the Break ??
Note that this is Ok with the Island Resort universe
Where is there something wrong ???
Pierrot
You could just put max(sales) instead of sales Or you could insert a break on product id and then drag and drop
everything
into the summary line - after that do a fold …
I found where the problem was : the Object we used in the body of the crosstab was a Detail, not a measure.
I redefined it to a measure with a max aggregation function and it works fine now.
Thanks alot anyway for having taken time to look at my problem
Pierrot
At 17.12.98 13:36, you wrote:
Doesn’t it even work if you insert a break on Nr. so that you get a summary line and then COPY (not move) the Difference in the summary line? After that do a fold on the Break ??
Note that this is Ok with the Island Resort universe
Where is there something wrong ???
Pierrot
You could just put max(sales) instead of sales Or you could insert a break on product id and then drag and drop
everything
into the summary line - after that do a fold …
Check if your dates are not masked timestamps. I mean, BO can display them as dates, but the data itself may include hours and minutes etc. (but formatted as a date).
In that case, the behaviour is normal because two seemingly equal date can mask different underlying values.
Sales / Date
Product-ID 1998-12-01 1998-02-02
2 22 6
I don’t find how to do it, because BO always displays 4 lines instead of 2. I of course tried the ovbious : breaks, variables formulas, folding …
It seems as if your “Sales” is not an aggregatable measure (check in designer, in the object properties/advanced(?) tab for an aggregation function when projecting…) this should be the sum function in your case…
The other thing you can do is: use “sum(Sales)” in the crosstab cell instead of simply “Sales”…
W.M.
DI Walter Muellner
Delphi Software GmbH, Vivenotgasse 48, A-1120 Vienna / Austria Tel: +43-1-8151456-12, Fax: +43-1-8151456-21 e-mail: w.muellner@delphi.at, WEB: http://www.delphi.at
Sales / Date
Product-ID 1998-12-01 1998-02-02
2 22 6
I don’t find how to do it, because BO always displays 4 lines instead of 2. I of course tried the ovbious : breaks, variables formulas, folding …
It seems as if your “Sales” is not an aggregatable measure (check in designer,
in the object properties/advanced(?) tab for an aggregation function when projecting…) this should be the sum function in your case…
THAT WAS IT ! In our case, Sales was not even a measure, it was a Detail ! The first thing I had done was to redefine it as a measure, but unfortunately (for me) the aggregation was set to ‘none’ although I had wanted ‘max’. Probably a too quick bad mouse movement. I set the measure aggregation to ‘max’ and everything is working fine again.