Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hellow, I think you will help me.
I Have in pivot table : sum( distinct fabs ( $(Var) - ([Variable]) ) ) = error , { Var = avg( [Variable] ) } ;
sum( distinct fabs ( avg( [Variable] ) - ([Variable]) ) ) = error
But : sum(distinct fabs(4.44 -([Variable]))) = all right
WHY ??????
Hello,
How did you create that variable? Try not using dollar expansion
sum(distinct fabs(var -([Variable])))
Hope that helps
Variable I create through the "Variable Overview".
Without '$' not work.
Just for testing purposes, create a new text object and write
=$(Var)
and likewise without $(). In the first case, it should return the result of the formula (avg([Variable])) in a numeric format and in the second, the formula itself. Is that right?
Thank you for your help, I solved the problem, considering a "avg(Variable)" in the script.