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: 
Not applicable

Number format for showing value in %


Hi All,

I am using the below formula in a text box to calculate the rate. 

=

num((count({$<[Lead Date]= {Yes}, [Opportunity Date]={Yes}>} [Id]) / count({$<[Lead Date]= {Yes}>} [Id])) * 100,'#,##0.00%')

I am getting the value as 10.000.00% I want to show it as 100%. I have tried some other format also but it's not working.

Please suggest.

Thanks

Ashish

1 Solution

Accepted Solutions
fvelascog72
Partner - Specialist
Partner - Specialist

Try this:

num((count({$<[Lead Date]= {Yes}, [Opportunity Date]={Yes}>} [Id]) / count({$<[Lead Date]= {Yes}>} [Id])) ,'#,##0%')

View solution in original post

4 Replies
robert_mika
Master III
Master III

Could you post your app?

fvelascog72
Partner - Specialist
Partner - Specialist

Try this:

num((count({$<[Lead Date]= {Yes}, [Opportunity Date]={Yes}>} [Id]) / count({$<[Lead Date]= {Yes}>} [Id])) ,'#,##0%')

Not applicable
Author

Try like below,

=

num((count({$<[Lead Date]= {Yes}, [Opportunity Date]={Yes}>} [Id]) / count({$<[Lead Date]= {Yes}>} [Id])) * 100,'#.##0%')

Not applicable
Author

Thanks Federico..