Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
cannot get the below to work. Both are showing the very same result. Any ideas?
Sum({$<Amount = {"<0"}>}{$<Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Sum({$<Amount = {">0"}>}{$<Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Best regards,
Olle
Try this and Update its working:
Sum({$<Amount = {"<0"},Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Sum({$<Amount = {">0"},Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Hi,
Please can you elaborate on your expected output.
Try:
Sum({$<Amount = {"<0"},Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Sum({$<Amount = {">0"},Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Hi Olle,
You don't need to create a new set, just to continue modifying the same set.
Try:
Sum({$<Amount = {"<0"}, Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Sum({$<Amount = {">0"}, Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
I need to sum up all positive values, for all counterparts, except XXX, YYY and QQQ
Same goes for negative values
//O
Try this and Update its working:
Sum({$<Amount = {"<0"},Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)
Sum({$<Amount = {">0"},Counterpart -= {'XXXX', 'YYYYY', 'QQQQQ'}>}Amount)