Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Community ,
i want two expression with set analysis -
1- sum of "amount" column with " condition is "account_code" = 4332
2- sum of "amount" with condition is "account_code" = 3301,3302,3303,3304. plz revert so can get the correct value
=Sum({<account_code = {"4332"}>}amount)
=Sum({<account_code = {"3301","3302","3303","3304"}>}amount)
Hi,
1:
sum({<account_code={"4332"}>}amount)
2:
sum({<account_code={"3301","3302","3303","3304"}>}amount)
Regards
hi try this
1. sum({<account_code={'4332'}>}amount)
2. sum({<account_code={'3301','3302','3303','3304'}>}amount)
Please check
=sum({<account_code = {4332}>}amount)
=sum({<account_code = {3301,3302,3303,3304}>}amount)
=Sum({$<account_code={'4332'}>}amount)
=Sum({$<account_code={'3301','3302','3303','3304'}>}amount)
Hi,
Please find detailed set analysis syntax and examples using this document you can write your own expression.
Vikas