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: 
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.')

1 Solution

Accepted Solutions
sunny_talwar

Try this:

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

View solution in original post

1 Reply
sunny_talwar

Try this:

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