Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Limit Char

Hey hey,

basically i have :

=

count({<Q2LastYearScore = {1}>} responseid) /count({<Q2LastYearScore = {3}>} responseid)

in a text box, but want to limit the result to 2 decimal places, what is the best way to go about this ???

1 Solution

Accepted Solutions
swuehl
MVP
MVP

maybe

=num(

count({<Q2LastYearScore = {1}>} responseid) /count({<Q2LastYearScore = {3}>} responseid)

,'#.00')

or use one of the functions round(), floor(), ceil() with an appropriate base / step.

View solution in original post

2 Replies
swuehl
MVP
MVP

maybe

=num(

count({<Q2LastYearScore = {1}>} responseid) /count({<Q2LastYearScore = {3}>} responseid)

,'#.00')

or use one of the functions round(), floor(), ceil() with an appropriate base / step.

CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Check with it

     =Num(count({<Q2LastYearScore = {1}>} responseid) /count({<Q2LastYearScore = {3}>} responseid),'###.##')

Celambarasan