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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
fanninam
Creator
Creator

Number Format

Good Afternoon,

I'm trying to get this number to only show two decimal points.  With the following expression statement the number is showing as "55555.555555555"

='Revenue Per Employee: '
&
Num(Sum({$<HCOEdetail={'Revenue'}>}Actaul_Amount),'$#,##0.')/Num(Sum((EjFTE)),'$#,##0.')

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this:

='Revenue Per Employee: '
&
Num(Sum({$<HCOEdetail={'Revenue'}>}Actaul_Amount)/Sum(EjFTE), '$#,##0.00')

View solution in original post

1 Reply
sunny_talwar
MVP
MVP

Try this:

='Revenue Per Employee: '
&
Num(Sum({$<HCOEdetail={'Revenue'}>}Actaul_Amount)/Sum(EjFTE), '$#,##0.00')