Sales History

I am re-modifying report 10157 (Sales History); I have to change dimension into 12 months from original 8 months. I do not know how to modify dimensions. Could you help me?

Thanks

Barathy

i MODIFIED THE DIMENSIONS NOW, BUT i AM GETTING AN ERROR "tHE INDEXING 12 IN THE ARRAY IS OUTSIDE OF PERMITTED RANGE.

What can I do now?

This is more a Development question. I’m not sure how many end-users will have experience with this.

Turn on the Debugger (Tools, Debugger, check Active, uncheck Breakpoint on Triggers) and run the report again. This will identify the code with the problem. You’ve increase the dimensions of 1 variable but not the other variables relating to it. I see these variables with dimensions setup:

DateRange
PriorYRMin
PriorYRMax
QuantitySold
$Sold
Profit%
QuantitySoldPRYR

I solved the problem.

DateRange(13)
PriorYRMin(12)
PriorYRMax(12)
QuantitySold(12)
$Sold(12)
Profit%(12)
QuantitySoldPRYR(12)

I gave DateRange dimiensions as 12. When I changed it to 13, it worked.

Barathy