Hi Sarb,
I have had this question asked earlier internally and what worked for me was to create a 'Numeric' user defined field that uses regex to only extract 2 decimal places precision out of the field. Interesting enough, it was for payments records.
So if you create a new user def field and show it in the pie and the legend, you should be good.
=RE("PostilionPosTransactionSummary.APRV%" , "(\d+\.\d{2})")? Numeric($1) : PostilionPosTransactionSummary.APRV%
Above syntax is matching it against a number followed by a decimal by atleast 2 digits and puts them into capture group $1, ignores the rest.
So in your case, you'd need:
=RE("approvals.APRV%" , "(\d+\.\d{2})")? Numeric($1) : approvals.APRV%
and then legend becomes:
approvals.SRCNAME Approvals – approvals.APRVCNT ( META.USERDEF01 %)
let me know if this works for you.
If my reply answered your question please click on the 'Accept as Solution' button to help others find the answer.
Thanks,
Shoaib