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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Chanty4u
MVP
MVP

num format

hi,

i hve exp   in text object

ExP; num((count(Def_ID)),'#.#00'))*100

my result is 107994.44444444

Expexted output:  10.79%

how can i achieve in text object?

thanks in advance''

Suresh

18 Replies
Chanty4u
MVP
MVP
Author

no anand....it shwng as % wit same result

Anonymous
Not applicable

what about this??

Num((Count(Def_ID)/10000, '##.00%') shared by Sunny

Kushal_Chawda

try this

=num((count(Def_ID)),'#.00%')

Chanty4u
MVP
MVP
Author

am using  in text object

=(count(Def_ID) -sum(if(Def_Status='Duplicate' or Def_Status='Withdrawn' or Def_Status='Rejected',1,0))

  /

  num((count(Def_ID)),'#.#000')*100&'%')

Chanty4u
MVP
MVP
Author

that is wrkng but... i need the formuale *100  not .'/'

Anonymous
Not applicable

Okay, you need *100

then this?

Num((Count(Def_ID)/1000000, '##.00%')*100

its_anandrjs
Champion III
Champion III

Share your sample file with expected output.

Regards

Anand

Chanty4u
MVP
MVP
Author

that missing closing bracet ...its wrkng fine

tresesco
MVP
MVP

Try with floor(), like:

Floor(count(Def_ID), 0.01) &'%'