Reporting Decimal Places

I am building a report which is using data from two separate tables to give me a percentage a project is complete. I’ve got the expression working, e.g.

<<(COUNT(FILTER(Visited, TRUE))*100/COUNT(FILTER(Total, TRUE)))>>

however, it is always giving me a whole number. Is it possible to enforce say 2 decimal places in a report template expression?

Thanks in advance for any suggestions!

Solved Solved
0 3 464
1 ACCEPTED SOLUTION

Have you tried with:

<<(COUNT(FILTER(Visited, TRUE))*100.00/COUNT(FILTER(Total, TRUE)))>>

Levent KULACOGLU
ABLE3 Ventures, LLC
Managing Partner

View solution in original post

3 REPLIES 3
Top Labels in this Space