Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
In my data model I have following records
Claim No | amount |
100 | 1000 |
100 | 2500 |
101 | 14000 |
102 | 4500 |
103 | 2000 |
102 | 5000 |
101 | 12000 |
100 | 500 |
In my straight I want to sum amount by Claim No and show the results where Amount is<25000. I have written the following expression but it is not working
SUM(if(sum(amount)<25000,amount))
My expected result should be
Claim No | amount |
100 | 4000 |
102 | 9500 |
103 | 2000 |
Sum({<[Claim No]={"=sum(Amount)<25000"}>}Amount)
Hi,
You can simply use dimension limit functionality:
chart property>DimensionLimit
check for show only value that are > Less than > 25000 >exact amount
HTH
Sushil
try like this :
if(sum(amount)<'25000',sum(amount))
Expression:
Sum({<[Cliam No] ={"=sum(Amount)<25000"}>}Amount)
It is not working
Sum({<[Claim No]={"=sum(Amount)<25000"}>}Amount)
its working for me !!! need to check your data once , can you please share your app.
Pleas find the attachment
Thanks
Is does not give desired results. Can u pls test this and reply with the sample QV doc
I had modified it
Thanks all of u