Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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 ???

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

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
Champion III
Champion III

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