Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago

HOW TO SUM A EXPRESSION

Hi I have to expression salesT = sum(sales) and CostT ) = sum(cost), with this two expression, i calculated ratio = CostT/salesT. 

 

I need to know how to sum(ratio)  as a individual value, i need to have Ratio as a independent columno in order to sum data. 

 

Bellow my data example. 

 

fechasalescostRatio 
01/01/20191023541200           0,0117
02/01/201915353101250           0,0008
03/01/2019230296501280           0,0001
04/01/20193454447501310           0,0000
05/01/201951816712501340           0,0000

 

Thanks! 

1 Reply

  • I am not sure I got it completely.

     

    I think Ratio should be calculated like 

    Ratio = calculate(divide(sum(sales),sum(cost))

    It will calculate is at all level.

     

    Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
    Thanks.