Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello every body!
I need to do a percent in a field text but i could not
I have a situation below:
Project Situation
Test - Progress
Test1 - within
Test2 - Late
Test3 - Late
So i want in my graphic show Situation Late with 50%
I puted
Count ([DISTINCT Projeto])/ Count (TOTAL [DISTINCT Projeto])
but is not correct.
Can you help me?
Regards,
Ricardo
Hi,
i think you've written brackets in wrong place. Try to write like this:
count
Milda
(distinct Projeto) / count (total distinct Projeto)Again:
count (distinct Projeto) / count (total distinct Projeto)
i used this example bellow and is ok
count (distinct Projeto) / count (total distinct Projeto)
thank you for help
Best Regards,
It's also missing any logic to count only "Late" projects in the numerator.
of course Michael
Thank you.