Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i this following table and I would like to show only the rows that met this condition : X>b+2*c
How can I do this ?
Thanks
J
If you are only concerned with returning which dimension values meet the above criteria, do the following
In your straight table add the following calculated dimension in the dimension tab
You will be left with a table that shows only dimensions that meet the above criteria. If you want to know exactly what the value was for those met the condition, then instead of 1 in your edit expression, use
Hi,
Normally, you should be able to set a condition in the Dimension Tab:
Well, it does not work well.
So, Add a calculated dimension and do a conditionnal expression dimensionned by the dimension you want in your report:
It should return Null() if the condition is not met, so that you can do "Suppress when value is Null" :
Hope this helps
Fabrice
hi you can change your dimension to calculated dimension
and use this formula
aggr(if(X>b+2*c,object1),object1)
hi
This only works if X>b+2*c are not calc fields
X= sum(K)+ sum(W)
b=avg(Aggr($(W),Date)
c=sum(K)/sum(W)
been going insane on this
Plz help