Iām wondering if thereās a way of achieving this :Ā
I have an event with a property that I need to SUM. I can do that with PROPSUM(A) without problem. The thing is that I need to add a cap to that SUM (maximum amount).
I would need something like MAX(PROPSUM(A),cap), where I could get :Ā
- The value of PROPSUM(A) ifĀ PROPSUM(A) <Ā cap
- The value of cap if PROPSUM(A) > cap
I have tried to achieve this in many ways but I canāt find a proper way to do it.
Ā
Thanks a lot for the help !