Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Accumulate a calculated field in the script and/or in the front view?

Hi all,

I´ve been searching for a solution to this easy cuestion but I didn´t find it or I was not able to make them run ; )

I want to accumulate a this calculated field:

count(Artikel)/count(TOTAL(Artikel))

The table should looks like this

Artikelcount(Artikel)count(TOTAL(Artikel))count(Artikel)/count(TOTAL(Artikel))Accumulated
851-320-T2510000,50%0,50%
352-30-30-M8-E-55410000,40%0,90%
617-5-A410000,40%1,30%
565-26-192-SW410000,40%1,70%
6336-KU-40-M8-K410000,40%2,10%
508-10-M8-10410000,40%2,50%
6319-21-C310000,30%2,80%

Which is the best method? Script or front view?

with rangesum (above(count

or Peek?

Thank you very much.

Urdru

1 Solution

Accepted Solutions
Not applicable
Author

Try:

RangeSum(Above(Column(4)), Column(3))

Regards

Rahul

View solution in original post

4 Replies
Not applicable
Author

Try:

RangeSum(Above(Column(4)), Column(3))

Regards

Rahul

Not applicable
Author

I think you can just use Column(3)/Column(4) and do the required formatting in the Number tab of the properties.

Not applicable
Author

Does our solution makes sense?

Not applicable
Author

Thank you very much and sorry for the late response.