Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
I have table that has ID field, product field and Sum Cost field. One ID can have multiple product of all different costs.
How to use expressions so that i get only those ID:s that have sum of costs to equal zero.
ID|Product|Cost
1|P1|10
1|P2|20
2|P1|0
2|P2|0....
In this example i would have only ID 2.
Hi
Try like below
Its depends on where you are going to include
Dim: =Aggr(Only({<ID={"=Sum(Cost)=0"}>}ID), ID)
or
Exp: Only({<ID={"=Sum(Cost)=0"}>}ID)
Hi
Try like below
Its depends on where you are going to include
Dim: =Aggr(Only({<ID={"=Sum(Cost)=0"}>}ID), ID)
or
Exp: Only({<ID={"=Sum(Cost)=0"}>}ID)
@MayilVahanan Both give only NULL
its working fine for me. can you post your screenshot..
@MayilVahanan I must have had some error the first time i tried it, beacause now it works. Thank you.