Within my Qlik sheet/Table object
I need to show a single refund value based on filters.
Example: =If(Bank_At_Flag = 'RFND', if(Paid_Amt <= 10.00, SUM(Paid_Amt)))
All I get in return is > - <.
Using Qlik Sense browser based tool.
Thanks for the help!
B
SUM({<Bank_At_Flag = {'RFND'}, Paid_Amt = {'<=10.00'}>}Paid_Amt)
This expression sums up all the paid amount where Bank_At_Flag = 'RFND' with 'Paid_Amt<=10.00'
Hope that helps.
K
Hi,
Try:
SUM({<Bank_At_Flag = {'RFND'}, Paid_Amt = {'<=10.00'}>} X_PAID_AMT)
Regards
Try this
=if(Paid_Amt <= 10.00, SUM({<Bank_At_Flag = {'RFND'}>}Paid_Amt))
SUM({<Bank_At_Flag = {'RFND'}, Paid_Amt = {'<=10.00'}>}Paid_Amt)
This expression sums up all the paid amount where Bank_At_Flag = 'RFND' with 'Paid_Amt<=10.00'
Hope that helps.
K
Hi,
Try:
SUM({<Bank_At_Flag = {'RFND'}, Paid_Amt = {'<=10.00'}>} X_PAID_AMT)
Regards
That is it!! 🙂 Thank You!
I apologize, your code does work. My bad!