Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
I have a situation ,
Where i want to show only data for below condition
Negative MACO and Positive Vol , attaching my sample data also .
It is required to do this at frontend level.
Maybe this could help?
Try as below
sum({<Account = {'Maco'} , Value = {"<0"}>}Value)
sum({<Account = {'Vol'} , Value = {">0"}>}Value)
in a single condition , it is not possible ?
I need here , only to come one row for vol which is
A ------------ 3
what exactly do you want to evaluate? please clarify
sum({<Account = {'Maco'} , Value = {"<0"}>}Value)
+
sum({<Account = {'Vol'} , Value = {">0"}>}Value)
I need here , only to come one row for vol which is
A ------------ 3
which is satisfying below condition
Negative MACO and Positive Vol
SUM( if((Account = 'Maco' AND Value <0) OR (Account='Vol' and Value > 0 ),Value) )
or
sum({<Account = {'Maco'} , Value = {"<0"}>}Value)
+
sum({<Account = {'Vol'} , Value = {">0"}>}Value)
Not working
Works for me