Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
My basic expression is as follows.
ROUND(RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM))
The above formula was modified as follows to show only the negative values in the pivot table.
ROUND(ONLY({<RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM))={<"0"}>}RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM))
But the formula has a error in itself. Please help to find the correct formula(expression)
Regards,
Priyantha.
Try this
i have added field (columnname) and created a variable (RANGESUM=RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM)=0)
ROUND(ONLY({<FIELD={"$(RANGESUM)"}>}RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM)))
check if it helps
Dear Pooja,
Even your expression shows as "expression ok" , expected result not achieved,
Regards,
Priyantha.
maybe
if (
RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM) <0,
RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM)
)
Dear Priyantha,
if possible could you provide some sample data and expect result
RangeMin(ROUND(RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM)),0)
and maybe check "suppress zero values" in your chart.
hope this helps
regards
Marco
Try with this
if (
RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM) <0,
RANGESUM(BRO_COMM,AGE_COM,+GRO_COM,-TOT_COM)
)