So I am trying to make a data columns that would only sum the subtotal.
let me explain, I want to sums the hours worked of employes. I also need to split the hours when they reach 40 hours into another column. I can make this work perfectly with formula or aggregate the only thing that doesnt work is the sum part.
If i go formula i do something like this:
if("7. Total a payer" > 40,40,"7. Total a payer")
This doesn sum and the grand total is 40
If i go aggregate like this:
if(sum("PRO - Facturation Query"."Total to pay")>40,40,sum("PRO - Facturation Query"."Total to pay"))
The sums work great if we only have 1 row as soon as I add data in the row section that as more than 1 the grand total doesnt work anymore.
i also tried using fixed_groupby and other like this I just can't get it to work.
So basicaly if I add a row that as multiple data it sums up all of them and I dont want to.
If you look at this image you see the 2 columns i made the aggregate is the one named sss and the formula is the one regular hours
Now if i add a row that as more data you see the data column ssss just whent all crazy