Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
I need help for total result is not correct if someone can help Im begginer thanks
this my expression :
If(RowNo()=0 ,sum( aggr(FABS((Max(W_B1)))-above(Max(W_B1)),Date)),max(W_B1)-Above(max(W_B1)))/100
It should be get 24517,83 NOT 21873,82
Can you try this
Sum(Aggr( If(RowNo() = 0, Sum(Aggr(fabs((Max(W_B1))) -Above(Max(W_B1)), (Date, (NUMERIC)))), Max(W_B1) - Above(Max(W_B1)))/100 , (Date, (NUMERIC))))
May be try this
Sum(Aggr( If(RowNo() = 0, Sum(Aggr(fabs((Max(W_B1))) -Above(Max(W_B1)), Date)), Max(W_B1) - Above(Max(W_B1)))/100 , Date))
not work for me I get negative value.
thanks a lot for your reply
Would you be able to share a sample to test this out?
OK
Can you try this
Sum(Aggr( If(RowNo() = 0, Sum(Aggr(fabs((Max(W_B1))) -Above(Max(W_B1)), (Date, (NUMERIC)))), Max(W_B1) - Above(Max(W_B1)))/100 , (Date, (NUMERIC))))
thanks a lot it's work for me