Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I only know how to sum up values for one column using something like:
sum({<AMOUNT = {"<99"}>} AMOUNT)
What is the expression to rangesum columns only summing up values smaller than 99?
rangesum(data1, data2, data3, data4)
RangeSum is not a set aggregator, so you cannot use set expressions. You will need to use If or RangeMin expressions:
RangeSum(If(A < 99, A), If(B < 99, B))
or
RangeSum(RangeMin(A, 99), RangeMin(B, 99))
Mhh right now I get back a 99.
To verify, can I somehow do set analysis like for year in that?
RangeSum is not a set aggregator, so you cannot use set expressions. You will need to use If or RangeMin expressions:
RangeSum(If(A < 99, A), If(B < 99, B))
or
RangeSum(RangeMin(A, 99), RangeMin(B, 99))
At first glance, I misunderstood the question. You can use Jonathan's solution.
RangeSum(RangeMin(A, 99), RangeMin(B, 99), RangeMin(C, 99), RangeMin(D, 99))